search method
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);
}