TranscriberMessage constructor

TranscriberMessage({
  1. required String segmentId,
  2. required String speakerUserId,
  3. required String sourceText,
  4. required Map<String, String> translationTexts,
  5. required int timestamp,
  6. required bool isCompleted,
})

Implementation

TranscriberMessage({
  required this.segmentId,
  required this.speakerUserId,
  required this.sourceText,
  required this.translationTexts,
  required this.timestamp,
  required this.isCompleted,
});