TTSInput constructor

const TTSInput({
  1. required String text,
  2. String? voiceId,
  3. double rate = 1.0,
  4. double pitch = 1.0,
})

Implementation

const TTSInput({
  required this.text,
  this.voiceId,
  this.rate = 1.0,
  this.pitch = 1.0,
});