fetchChatRoomAttributes method
Implementation
Future<Map<String, String>?> fetchChatRoomAttributes({
required String roomId,
List<String>? keys,
}) {
return checkResult(ChatSDKEvent.fetchChatRoomAttributes, () {
return Client.getInstance.chatRoomManager.fetchChatRoomAttributes(
roomId: roomId,
keys: keys,
);
});
}