search method

Paginated<ChatContactId, RxChatContact> search({
  1. UserName? name,
  2. UserEmail? email,
  3. UserPhone? phone,
})

Searches ChatContacts by the given criteria.

Implementation

Paginated<ChatContactId, RxChatContact> search({
  UserName? name,
  UserEmail? email,
  UserPhone? phone,
}) {
  Log.debug('search($name, $email, $phone)', '$runtimeType');

  return _contactRepository.search(name: name, email: email, phone: phone);
}