AudioStream constructor

AudioStream({
  1. int? bitrateBps,
  2. int? channelCount,
  3. List<String>? channelLayout,
  4. String? codec,
  5. List<AudioAtom>? mapping,
  6. int? sampleRateHertz,
})

Implementation

AudioStream({
  this.bitrateBps,
  this.channelCount,
  this.channelLayout,
  this.codec,
  this.mapping,
  this.sampleRateHertz,
});