searchByNum method

Future<RxUser?> searchByNum(
  1. UserNum num
)

Searches Users by the provided UserNum.

This is an exact match search.

Implementation

Future<RxUser?> searchByNum(UserNum num) async =>
    (await _search(num: num)).edges.firstOrNull;