SpeakerSegment constructor

const SpeakerSegment({
  1. required String id,
  2. required double startTime,
  3. required double endTime,
  4. required String text,
  5. required Map<String, dynamic> dubs,
})

Implementation

const SpeakerSegment({
  required this.id,
  required this.startTime,
  required this.endTime,
  required this.text,
  required this.dubs,
});