fetchChatRoomAllowListFromServer method

Future<List<String>> fetchChatRoomAllowListFromServer({
  1. required String roomId,
})

Implementation

Future<List<String>> fetchChatRoomAllowListFromServer(
    {required String roomId}) {
  return checkResult(ChatSDKEvent.fetchChatRoomAllowListFromServer, () {
    return Client.getInstance.chatRoomManager
        .fetchChatRoomAllowListFromServer(roomId);
  });
}