fetchAllContactIds method

Future<List<String>> fetchAllContactIds()

Implementation

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