TextToSpeechOptions constructor

TextToSpeechOptions({
  1. String? modelId,
  2. String? voiceId,
  3. String? language,
  4. String? audioFormat,
  5. double? speed,
  6. double? pitch,
  7. double? volume,
  8. Object? rawRepresentationFactory(
    1. TextToSpeechClient
    )?,
  9. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new TextToSpeechOptions.

Implementation

TextToSpeechOptions({
  this.modelId,
  this.voiceId,
  this.language,
  this.audioFormat,
  this.speed,
  this.pitch,
  this.volume,
  this.rawRepresentationFactory,
  this.additionalProperties,
});