SearchController constructor
- ChatService _chatService,
- UserService _userService,
- ContactService _contactService,
- MyUserService _myUserService, {
- required List<
SearchCategory> categories, - RxChat? chat,
- void onSelected(
- SearchViewResults? results
Implementation
SearchController(
this._chatService,
this._userService,
this._contactService,
this._myUserService, {
required this.categories,
this.chat,
this.onSelected,
}) : assert(categories.isNotEmpty);