TranslationTranscriptData constructor
TranslationTranscriptData({ - required String speakerId,
- required String speakerName,
- required String language,
- required String originalText,
- required String translatedText,
- required String sourceLang,
- String? detectedLanguage,
- 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,
});