SpeechToTextWordResponseModel constructor

const SpeechToTextWordResponseModel({
  1. required String text,
  2. dynamic start,
  3. dynamic end,
  4. required SpeechToTextWordResponseModelType type,
  5. dynamic speakerId,
  6. required double logprob,
  7. dynamic characters,
})

Implementation

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