whisper_flutter_new/example/lib/whisper_result.dart
小草林(田梓萱) af91fc48cb
feat: publish v1.0.1
Signed-off-by: 小草林(田梓萱) <xcl@xuegao-tzx.top>
2024-06-12 10:31:01 +08:00

12 lines
254 B
Dart

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;
}