WordInfo constructor

WordInfo({
  1. double? confidence,
  2. String? endTime,
  3. String? speakerLabel,
  4. int? speakerTag,
  5. String? startTime,
  6. String? word,
})

Implementation

WordInfo({
  this.confidence,
  this.endTime,
  this.speakerLabel,
  this.speakerTag,
  this.startTime,
  this.word,
});