ScheduleRoomOptions constructor

ScheduleRoomOptions({
  1. String roomName = '',
  2. String password = '',
  3. int scheduleStartTime = 0,
  4. int scheduleEndTime = 0,
  5. int reminderSecondsBeforeStart = 0,
  6. List<String>? scheduleAttendees,
  7. bool isAllMicrophoneDisabled = false,
  8. bool isAllCameraDisabled = false,
  9. bool isAllScreenShareDisabled = false,
  10. bool isAllMessageDisabled = false,
})

Implementation

ScheduleRoomOptions({
  this.roomName = '',
  this.password = '',
  this.scheduleStartTime = 0,
  this.scheduleEndTime = 0,
  this.reminderSecondsBeforeStart = 0,
  List<String>? scheduleAttendees,
  this.isAllMicrophoneDisabled = false,
  this.isAllCameraDisabled = false,
  this.isAllScreenShareDisabled = false,
  this.isAllMessageDisabled = false,
}) : scheduleAttendees = scheduleAttendees ?? [];