updateConferenceInfo abstract method

Future<TUIActionCallback> updateConferenceInfo(
  1. String roomId, {
  2. String? roomName,
  3. int? scheduleStartTime,
  4. int? scheduleEndTime,
})

Update scheduled conference information.

roomId The conference ID, which is the room ID. roomName The conference name ,which is the room name. scheduleStartTime The conference schedule start time. scheduleEndTime The conference schedule end time.

Implementation

Future<TUIActionCallback> updateConferenceInfo(
  String roomId, {
  String? roomName,
  int? scheduleStartTime,
  int? scheduleEndTime,
});