TranscriptionSegment constructor

const TranscriptionSegment({
  1. required int id,
  2. required int seek,
  3. required double start,
  4. required double end,
  5. required String text,
  6. required List<int> tokens,
  7. required double temperature,
  8. required double avgLogprob,
  9. required double compressionRatio,
  10. required double noSpeechProb,
})

Implementation

const TranscriptionSegment({
  required this.id,
  required this.seek,
  required this.start,
  required this.end,
  required this.text,
  required this.tokens,
  required this.temperature,
  required this.avgLogprob,
  required this.compressionRatio,
  required this.noSpeechProb,
});