TranscriptionSegment constructor

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

Implementation

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