SpeechToTextCharacterResponseModel constructor

const SpeechToTextCharacterResponseModel({
  1. required String text,
  2. dynamic start,
  3. dynamic end,
})

Implementation

const SpeechToTextCharacterResponseModel({
  required this.text,
  this.start,
  this.end,
});