whisper_flutter_new/example/lib/whisper_result.dart

12 lines
254 B
Dart
Raw Permalink Normal View History

import "package:whisper_flutter_new/whisper_flutter_new.dart";
class TranscribeResult {
const TranscribeResult({
required this.transcription,
required this.time,
});
final WhisperTranscribeResponse transcription;
final Duration time;
}