SynthesizeSpeechConfig constructor

SynthesizeSpeechConfig({
  1. double? speakingRate,
  2. double? pitch,
  3. double? volumeGainDb,
  4. List<String>? effectsProfileId,
  5. VoiceSelectionParams? voice,
})

Configuration of how speech should be synthesized.

Implementation

SynthesizeSpeechConfig({
  this.speakingRate,
  this.pitch,
  this.volumeGainDb,
  this.effectsProfileId,
  this.voice,
});