GptTranscriptionObject constructor

GptTranscriptionObject({
  1. required String text,
  2. String? duration,
  3. String? language,
  4. List<TranscriptionSegment>? segments,
  5. List<TranscriptionWord>? words,
})

Implementation

GptTranscriptionObject({required this.text, this.duration, this.language, this.segments, this.words});