MediaSettings constructor

MediaSettings({
  1. String? videoDevice,
  2. String? audioDevice,
  3. String? outputDevice,
  4. String? screenDevice,
  5. bool? noiseSuppression = true,
  6. NoiseSuppressionLevel? noiseSuppressionLevel = NoiseSuppressionLevel.veryHigh,
  7. bool? echoCancellation = true,
  8. bool? autoGainControl = true,
  9. bool? highPassFilter = true,
})

Implementation

MediaSettings({
  this.videoDevice,
  this.audioDevice,
  this.outputDevice,
  this.screenDevice,
  this.noiseSuppression = true,
  this.noiseSuppressionLevel = NoiseSuppressionLevel.veryHigh,
  this.echoCancellation = true,
  this.autoGainControl = true,
  this.highPassFilter = true,
});