fetchAllContacts method

Future<List<Contact>> fetchAllContacts()

Implementation

Future<List<Contact>> fetchAllContacts() {
  return checkResult(ChatSDKEvent.fetchAllContacts, () {
    return Client.getInstance.contactManager.fetchAllContacts();
  });
}