fetchChatroomInfo method Null safety

Future<NIMResult<NIMChatroomInfo>> fetchChatroomInfo(
  1. String roomId
)

Get the information of the current chatroom.

Implementation

Future<NIMResult<NIMChatroomInfo>> fetchChatroomInfo(String roomId) {
  return _platform.fetchChatroomInfo(roomId);
}