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 voiceIsolation = true,
  7. bool typingNoiseDetection = true,
  8. bool stopAudioCaptureOnMute = true,
  9. TrackProcessor<AudioProcessorOptions>? processor,
})

Implementation

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