TranslationTranscriptData constructor

TranslationTranscriptData({
  1. required String speakerId,
  2. required String speakerName,
  3. required String language,
  4. required String originalText,
  5. required String translatedText,
  6. required String sourceLang,
  7. String? detectedLanguage,
  8. required int timestamp,
})

Implementation

TranslationTranscriptData({
  required this.speakerId,
  required this.speakerName,
  required this.language,
  required this.originalText,
  required this.translatedText,
  required this.sourceLang,
  this.detectedLanguage,
  required this.timestamp,
});