SpeechAudioInfo constructor

const SpeechAudioInfo({
  1. String audioType = 'pcm',
  2. int sampleRate = 16000,
  3. int soundChannel = 1,
  4. int sampleBit = 16,
})

Implementation

const SpeechAudioInfo({
  this.audioType = 'pcm',
  this.sampleRate = 16000,
  this.soundChannel = 1,
  this.sampleBit = 16,
});