STTResponse constructor

const STTResponse({
  1. required String text,
  2. String? language,
  3. double? confidence,
  4. List<WordTiming>? words,
  5. List<TranscriptionSegment>? segments,
  6. String? model,
  7. double? duration,
  8. UsageInfo? usage,
  9. double? languageProbability,
  10. Map<String, dynamic>? additionalFormats,
})

Implementation

const STTResponse({
  required this.text,
  this.language,
  this.confidence,
  this.words,
  this.segments,
  this.model,
  this.duration,
  this.usage,
  this.languageProbability,
  this.additionalFormats,
});