RTCRtpParameters constructor

RTCRtpParameters({
  1. String? transactionId,
  2. RTCRTCPParameters? rtcp,
  3. List<RTCHeaderExtension>? headerExtensions,
  4. List<RTCRtpEncoding>? encodings,
  5. List<RTCRTPCodec>? codecs,
  6. RTCDegradationPreference? degradationPreference,
})

Implementation

RTCRtpParameters({
  this.transactionId,
  this.rtcp,
  this.headerExtensions,
  this.encodings,
  this.codecs,
  this.degradationPreference,
});