updateChatroomInfo method Null safety

Future<NIMResult<void>> updateChatroomInfo(
  1. {required String roomId,
  2. required NIMChatroomUpdateRequest request,
  3. bool needNotify = true,
  4. Map<String, Object>? notifyExtension}
)

更新聊天室信息

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