AudioCaptureOptions constructor

const AudioCaptureOptions(
  1. {String? deviceId,
  2. bool noiseSuppression = true,
  3. bool echoCancellation = true,
  4. bool autoGainControl = true,
  5. bool highPassFilter = false,
  6. bool typingNoiseDetection = true}
)

Implementation

const AudioCaptureOptions({
  this.deviceId,
  this.noiseSuppression = true,
  this.echoCancellation = true,
  this.autoGainControl = true,
  this.highPassFilter = false,
  this.typingNoiseDetection = true,
});