CreateRoomOptions constructor

CreateRoomOptions({
  1. String roomName = '',
  2. String password = '',
  3. bool isAllMicrophoneDisabled = false,
  4. bool isAllCameraDisabled = false,
  5. bool isAllScreenShareDisabled = false,
  6. bool isAllMessageDisabled = false,
})

Implementation

CreateRoomOptions({
  this.roomName = '',
  this.password = '',
  this.isAllMicrophoneDisabled = false,
  this.isAllCameraDisabled = false,
  this.isAllScreenShareDisabled = false,
  this.isAllMessageDisabled = false,
});