TTSConfiguration constructor

const TTSConfiguration({
  1. String voice = 'system',
  2. String language = 'en-US',
  3. double speakingRate = 0.5,
  4. double pitch = 1.0,
  5. double volume = 1.0,
  6. String audioFormat = 'pcm',
})

Implementation

const TTSConfiguration({
  this.voice = 'system',
  this.language = 'en-US',
  this.speakingRate = 0.5,
  this.pitch = 1.0,
  this.volume = 1.0,
  this.audioFormat = 'pcm',
});