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,
)

The total publish duration (ms) of the remote video stream.

@since v3.1.2. Constructs a RemoteVideoStats

Implementation

//int publishDuration;

/// Constructs a [RemoteVideoStats]
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,
);