AsrTranscribeInput constructor

AsrTranscribeInput({
  1. required String audioPath,
  2. required String language,
  3. String? timestamps,
})

Implementation

AsrTranscribeInput({
  required this.audioPath,
  required this.language,
  this.timestamps,
});