Word constructor

const Word({
  1. required String text,
  2. required double start,
  3. required double end,
  4. String? type,
  5. double? logprob,
  6. String? speakerId,
})

Implementation

const Word({
  required this.text,
  required this.start,
  required this.end,
  this.type,
  this.logprob,
  this.speakerId,
});