RealtimeAudioConfig constructor

const RealtimeAudioConfig({
  1. String? inputFormat,
  2. String? outputFormat,
  3. int? sampleRate,
  4. bool enableVAD = true,
  5. bool enableEchoCancellation = true,
  6. bool enableNoiseSuppression = true,
  7. int? timeoutSeconds,
  8. Map<String, dynamic>? customParams,
})

Implementation

const RealtimeAudioConfig({
  this.inputFormat,
  this.outputFormat,
  this.sampleRate,
  this.enableVAD = true,
  this.enableEchoCancellation = true,
  this.enableNoiseSuppression = true,
  this.timeoutSeconds,
  this.customParams,
});