searchByLink method

Future<RxUser?> searchByLink(
  1. ChatDirectLinkSlug link
)

Searches Users by the provided ChatDirectLinkSlug.

This is an exact match search.

Implementation

Future<RxUser?> searchByLink(ChatDirectLinkSlug link) async =>
    (await _search(link: link)).edges.firstOrNull;