AndroidAudioOptions constructor

const AndroidAudioOptions({
  1. AndroidAudioSource source = AndroidAudioSource.mic,
  2. bool enableAutomaticGainControl = true,
  3. bool enableEchoCancellation = true,
  4. bool enableNoiseSuppression = true,
  5. bool allowBluetoothSco = true,
  6. int bitDepth = 16,
  7. int? bufferSize,
})

Creates Android audio customization options.

Implementation

const AndroidAudioOptions({
  this.source = AndroidAudioSource.mic,
  this.enableAutomaticGainControl = true,
  this.enableEchoCancellation = true,
  this.enableNoiseSuppression = true,
  this.allowBluetoothSco = true,
  this.bitDepth = 16,
  this.bufferSize,
});