RoomInfo constructor
RoomInfo({ - String roomID = '',
- String roomName = '',
- RoomUser? roomOwner,
- int participantCount = 0,
- int createTime = 0,
- RoomStatus roomStatus = RoomStatus.scheduled,
- int scheduledStartTime = 0,
- int scheduledEndTime = 0,
- int startReminderInSeconds = 0,
- List<RoomUser>? scheduleAttendees,
- String? password,
- bool isAllMicrophoneDisabled = false,
- bool isAllCameraDisabled = false,
- bool isAllMessageDisabled = false,
- bool isAllScreenShareDisabled = false,
})
Implementation
RoomInfo({
this.roomID = '',
this.roomName = '',
RoomUser? roomOwner,
this.participantCount = 0,
this.createTime = 0,
this.roomStatus = RoomStatus.scheduled,
this.scheduledStartTime = 0,
this.scheduledEndTime = 0,
this.startReminderInSeconds = 0,
List<RoomUser>? scheduleAttendees,
this.password,
this.isAllMicrophoneDisabled = false,
this.isAllCameraDisabled = false,
this.isAllMessageDisabled = false,
this.isAllScreenShareDisabled = false,
}) : roomOwner = roomOwner ?? RoomUser(),
scheduleAttendees = scheduleAttendees ?? [];