ElevenLabsSTTResponse constructor

const ElevenLabsSTTResponse({
  1. required String text,
  2. String? languageCode,
  3. double? languageProbability,
  4. List<Word>? words,
  5. Map<String, dynamic>? additionalFormats,
})

Implementation

const ElevenLabsSTTResponse({
  required this.text,
  this.languageCode,
  this.languageProbability,
  this.words,
  this.additionalFormats,
});