fetchAllBlockedContactIds method

Future<List<String>> fetchAllBlockedContactIds()

Implementation

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