Text2Audio constructor

const Text2Audio({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String prompt,
  5. dynamic initAudio,
  6. String? voiceId,
  7. String? language,
  8. double? speed,
  9. double? temp,
  10. String? base64,
  11. bool? stream,
})

Implementation

const Text2Audio({
  required this.key,
  this.webhook,
  this.trackId,
  required this.prompt,
  this.initAudio,
  this.voiceId,
  this.language,
  this.speed,
  this.temp,
  this.base64,
  this.stream,
});