CactusTranscriptionResult constructor

CactusTranscriptionResult({
  1. required bool success,
  2. required String text,
  3. double timeToFirstTokenMs = 0.0,
  4. double totalTimeMs = 0.0,
  5. double tokensPerSecond = 0.0,
  6. String? errorMessage,
})

Implementation

CactusTranscriptionResult({
  required this.success,
  required this.text,
  this.timeToFirstTokenMs = 0.0,
  this.totalTimeMs = 0.0,
  this.tokensPerSecond = 0.0,
  this.errorMessage,
});