ScheduleRoomOptions constructor
ScheduleRoomOptions({ - String roomName = '',
- String password = '',
- int scheduleStartTime = 0,
- int scheduleEndTime = 0,
- int reminderSecondsBeforeStart = 0,
- List<String>? scheduleAttendees,
- bool isAllMicrophoneDisabled = false,
- bool isAllCameraDisabled = false,
- bool isAllScreenShareDisabled = false,
- 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 ?? [];