AudioPreferences constructor

const AudioPreferences({
  1. String? device,
  2. bool? noiseSuppression,
  3. NoiseSuppressionLevel? noiseSuppressionLevel,
  4. bool? echoCancellation,
  5. bool? autoGainControl,
  6. bool? highPassFilter,
})

Implementation

const AudioPreferences({
  super.device,
  this.noiseSuppression,
  this.noiseSuppressionLevel,
  this.echoCancellation,
  this.autoGainControl,
  this.highPassFilter,
});