ConferenceParams constructor

ConferenceParams({
  1. bool isMuteMicrophone = true,
  2. bool isOpenCamera = false,
  3. bool isSoundOnSpeaker = true,
  4. String? name,
  5. bool enableCameraForAllUsers = true,
  6. bool enableMicrophoneForAllUsers = true,
  7. bool enableMessageForAllUsers = true,
  8. bool enableSeatControl = false,
})

Implementation

ConferenceParams({
  this.isMuteMicrophone = true,
  this.isOpenCamera = false,
  this.isSoundOnSpeaker = true,
  this.name,
  this.enableCameraForAllUsers = true,
  this.enableMicrophoneForAllUsers = true,
  this.enableMessageForAllUsers = true,
  this.enableSeatControl = false,
});