This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
whisper_flutter_new/example/lib/whisper_result.dart

12 lines
254 B
Dart
Raw 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;
}