fetchChatRoomAttributes method

Future<Map<String, String>?> fetchChatRoomAttributes({
  1. required String roomId,
  2. List<String>? keys,
})

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,
    );
  });
}