ChatDataProvider constructor

ChatDataProvider({
  1. required ChatOverviewService chatService,
  2. required ChatUserService userService,
  3. required ChatDetailService messageService,
})

Implementation

ChatDataProvider({
  required this.chatService,
  required this.userService,
  required this.messageService,
}) : super(token: _token);