Speech2Text constructor

const Speech2Text({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String audioUrl,
  5. String? inputLanguage,
  6. String? timestampLevel,
})

Implementation

const Speech2Text({
  required this.key,
  this.webhook,
  this.trackId,
  required this.audioUrl,
  this.inputLanguage,
  this.timestampLevel,
});