searchByLink method

Future<RxUser?> searchByLink(
  1. 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;