CreateMediaSFURoomOptions constructor

CreateMediaSFURoomOptions(
  1. {required String action,
  2. required int duration,
  3. required int capacity,
  4. required String userName,
  5. int? scheduledDate,
  6. String? secureCode,
  7. EventType? eventType,
  8. MeetingRoomParams? meetingRoomParams,
  9. RecordingParams? recordingParams,
  10. bool? recordOnly = false,
  11. bool? safeRoom = false,
  12. bool? autoStartSafeRoom = false,
  13. String? safeRoomAction = "kick",
  14. bool? dataBuffer = false,
  15. String? bufferType = "all"}
)

Implementation

CreateMediaSFURoomOptions({
  required this.action,
  required this.duration,
  required this.capacity,
  required this.userName,
  this.scheduledDate,
  this.secureCode,
  this.eventType,
  this.meetingRoomParams,
  this.recordingParams,
  this.recordOnly = false,
  this.safeRoom = false,
  this.autoStartSafeRoom = false,
  this.safeRoomAction = "kick",
  this.dataBuffer = false,
  this.bufferType = "all",
});