getAllContacts method

Future<List<Contact>> getAllContacts()

Implementation

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