updateConferenceInfo abstract method
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.
disableMessage Whether to disable all members from sending messages.
disableCamera Whether to disable all members from turning on the camera.
disableMicrophone Whether to disable all members from turning on the microphone.
disableScreenSharing Whether to disable all members from screen sharing.
password Room password.
reminderSecondsBeforeStart Reminder time before conference start.
Implementation
Future<TUIActionCallback> updateConferenceInfo(
String roomId, {
String? roomName,
int? scheduleStartTime,
int? scheduleEndTime,
bool? disableMessage,
bool? disableCamera,
bool? disableMicrophone,
bool? disableScreenSharing,
String? password,
int? reminderSecondsBeforeStart,
});