fetchGroupAllowList method

Future<List<String>> fetchGroupAllowList(
  1. String groupId
)

Implementation

Future<List<String>> fetchGroupAllowList(String groupId) {
  return checkResult(ChatSDKEvent.fetchGroupAllowList, () {
    return Client.getInstance.groupManager.fetchAllowListFromServer(groupId);
  });
}