AudioCodec constructor

const AudioCodec({
  1. int? channels,
  2. int? clockRate,
  3. String? mimeType,
  4. String? sdpFmtpLine,
})

Creates an AudioCodec instance

Implementation

const AudioCodec({
  this.channels,
  this.clockRate,
  this.mimeType,
  this.sdpFmtpLine,
});