RtcVideoRecvStats constructor

RtcVideoRecvStats(
  1. String userId,
  2. int streamId,
  3. int bytesRecv,
  4. int recvBitrate,
  5. int packetsLost,
  6. double lossRatio,
  7. int width,
  8. int height,
  9. int framerate,
  10. int plisSent,
  11. VideoCodecType codecType,
)

Constructs a RtcVideoRecvStats

Implementation

RtcVideoRecvStats(
    this.userId,
    this.streamId,
    this.bytesRecv,
    this.recvBitrate,
    this.packetsLost,
    this.lossRatio,
    this.width,
    this.height,
    this.framerate,
    this.plisSent,
    this.codecType);