STTOutput constructor

const STTOutput({
  1. required String text,
  2. required double confidence,
  3. String? detectedLanguage,
  4. required DateTime timestamp,
})

Implementation

const STTOutput({
  required this.text,
  required this.confidence,
  this.detectedLanguage,
  required this.timestamp,
});