RtcRemoteInboundRtp constructor

const RtcRemoteInboundRtp({
  1. String? id,
  2. String? type,
  3. double? timestamp,
  4. String? transportId,
  5. String? kind,
  6. String? outboundId,
  7. String? codecId,
  8. int? ssrc,
  9. double? jitter,
  10. int? roundTripTimeMeasurements,
  11. double? roundTripTime,
  12. double? totalRoundTripTime,
  13. double? fractionLost,
  14. int? packetsLost,
})

Implementation

const RtcRemoteInboundRtp({
  super.id,
  super.type,
  super.timestamp,
  this.transportId,
  this.kind,
  this.outboundId,
  this.codecId,
  this.ssrc,
  this.jitter,
  this.roundTripTimeMeasurements,
  this.roundTripTime,
  this.totalRoundTripTime,
  this.fractionLost,
  this.packetsLost,
});