RemoteVideoStats constructor

RemoteVideoStats(
  1. int uid,
  2. int delay,
  3. int width,
  4. int height,
  5. int receivedBitrate,
  6. int decoderOutputFrameRate,
  7. int rendererOutputFrameRate,
  8. int packetLossRate,
  9. VideoStreamType rxStreamType,
  10. int totalFrozenTime,
  11. int frozenRate,
  12. int totalActiveTime,
  13. int publishDuration,
)

Constructs a RemoteVideoStats

Implementation

RemoteVideoStats(
  this.uid,
  this.delay,
  this.width,
  this.height,
  this.receivedBitrate,
  this.decoderOutputFrameRate,
  this.rendererOutputFrameRate,
  this.packetLossRate,
  this.rxStreamType,
  this.totalFrozenTime,
  this.frozenRate,
  this.totalActiveTime,
  this.publishDuration,
);