AudioConfig constructor

AudioConfig({
  1. String? audioEncoding,
  2. List<String>? effectsProfileId,
  3. double? pitch,
  4. int? sampleRateHertz,
  5. double? speakingRate,
  6. double? volumeGainDb,
})

Implementation

AudioConfig({
  this.audioEncoding,
  this.effectsProfileId,
  this.pitch,
  this.sampleRateHertz,
  this.speakingRate,
  this.volumeGainDb,
});