SearchController constructor

SearchController(
  1. ChatService _chatService,
  2. UserService _userService,
  3. ContactService _contactService,
  4. MyUserService _myUserService, {
  5. required List<SearchCategory> categories,
  6. RxChat? chat,
  7. void onSelected(
    1. SearchViewResults? results
    )?,
})

Implementation

SearchController(
  this._chatService,
  this._userService,
  this._contactService,
  this._myUserService, {
  required this.categories,
  this.chat,
  this.onSelected,
}) : assert(categories.isNotEmpty);