searchByLink method
- DirectLinkSlug link
Searches Users by the provided DirectLinkSlug.
This is an exact match search.
Implementation
Future<RxUser?> searchByLink(DirectLinkSlug link) async =>
(await _search(link: link)).edges.firstOrNull;
Searches Users by the provided DirectLinkSlug.
This is an exact match search.
Future<RxUser?> searchByLink(DirectLinkSlug link) async =>
(await _search(link: link)).edges.firstOrNull;