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