listContacts static method
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;
}