AudioParams constructor

const AudioParams({
  1. String? format,
  2. int? sampleRate,
  3. String? channels,
  4. int? channelCount,
  5. String? hrChannels,
})

AudioParams

Audio format as output by the audio decoder.

Implementation

const AudioParams({
  this.format,
  this.sampleRate,
  this.channels,
  this.channelCount,
  this.hrChannels,
});