searchByEmail method

Future<RxChatContact?> searchByEmail(
  1. UserEmail email
)

Searches ChatContacts by the provided UserEmail.

This is an exact match search.

Implementation

Future<RxChatContact?> searchByEmail(UserEmail email) async {
  Log.debug('searchByEmail($email)', '$runtimeType');
  return (await _search(email: email)).edges.firstOrNull;
}