NEAsrCaptionResult constructor

NEAsrCaptionResult({
  1. required int uid,
  2. required bool isLocalUser,
  3. required int timestamp,
  4. String? content,
  5. String? language,
  6. required bool haveTranslation,
  7. String? translatedText,
  8. String? translationLanguage,
  9. required bool isFinal,
})

Implementation

NEAsrCaptionResult({
  required this.uid,
  required this.isLocalUser,
  required this.timestamp,
  this.content,
  this.language,
  required this.haveTranslation,
  this.translatedText,
  this.translationLanguage,
  required this.isFinal,
});