updateChatroomInfo method Null safety
更新聊天室信息
Implementation
Future<NIMResult<void>> updateChatroomInfo({
required String roomId,
required NIMChatroomUpdateRequest request,
bool needNotify = true,
Map<String, Object>? notifyExtension,
}) {
return _platform.updateChatroomInfo(
roomId: roomId,
request: request,
needNotify: needNotify,
notifyExtension: notifyExtension,
);
}