AudioStream constructor

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

Implementation

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