listContacts static method

Future<List<User>> listContacts()

Lists all contacts of the current user.

Implementation

static Future<List<User>> listContacts() async {
  MercuryRequest req = await _req();

  MercuryResponse res = await _client.listContacts(req);
  return res.contacts;
}