searchByLogin method

Future<RxUser?> searchByLogin(
  1. UserLogin login
)

Searches Users by the provided UserLogin.

This is an exact match search.

Implementation

Future<RxUser?> searchByLogin(UserLogin login) async =>
    (await _search(login: login)).edges.firstOrNull;