SpeechToTextChunkResponseModel constructor

const SpeechToTextChunkResponseModel({
  1. required String languageCode,
  2. required double languageProbability,
  3. required String text,
  4. required List<SpeechToTextWordResponseModel> words,
  5. dynamic additionalFormats,
})

Implementation

const SpeechToTextChunkResponseModel({
  required this.languageCode,
  required this.languageProbability,
  required this.text,
  required this.words,
  this.additionalFormats,
});