getAllBlockedContactIds method

Future<List<String>> getAllBlockedContactIds()

Implementation

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