WhisperTranscribeSegment constructor
WhisperTranscribeSegment({})
Implementation
factory WhisperTranscribeSegment({
@JsonKey(
name: "from_ts",
fromJson: WhisperTranscribeSegment._durationFromInt,
)
required Duration fromTs,
@JsonKey(
name: "to_ts",
fromJson: WhisperTranscribeSegment._durationFromInt,
)
required Duration toTs,
required String text,
}) = _WhisperTranscribeSegment;