getAllContactIds method

Future<List<String>> getAllContactIds()

Implementation

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