CreateMediaSFURoomOptions constructor
      
      CreateMediaSFURoomOptions({ 
    
    
- required String action,
- required int duration,
- required int capacity,
- required String userName,
- int? scheduledDate,
- String? secureCode,
- EventType? eventType,
- MeetingRoomParams? meetingRoomParams,
- RecordingParams? recordingParams,
- bool? recordOnly = false,
- bool? safeRoom = false,
- bool? autoStartSafeRoom = false,
- String? safeRoomAction = "kick",
- bool? dataBuffer = false,
- String? bufferType = "all",
- bool? supportSIP = false,
- String? directionSIP = "both",
- bool? preferPCMA = false,
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",
  this.supportSIP = false,
  this.directionSIP = "both",
  this.preferPCMA = false,
});