searchByEmail method
- 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;
}