searchByName method
- UserName name, {
- ChatContactsCursor? after,
- int? first,
Searches ChatContacts by the provided UserName.
This is a fuzzy search.
Implementation
Future<Page<RxChatContact, ChatContactsCursor>> searchByName(
UserName name, {
ChatContactsCursor? after,
int? first,
}) async {
Log.debug('searchByName($name, $after, $first)', '$runtimeType');
return await _search(name: name, after: after, first: first);
}