RtcVideoSendStats constructor

RtcVideoSendStats(
  1. int streamId,
  2. int bytesSent,
  3. int sendBitrate,
  4. int packetsLost,
  5. double lossRatio,
  6. int width,
  7. int height,
  8. int framerate,
  9. int plisReceived,
  10. int rtt,
  11. VideoCodecType codecType,
)

Constructs a RtcVideoSendStats

Implementation

RtcVideoSendStats(
    this.streamId,
    this.bytesSent,
    this.sendBitrate,
    this.packetsLost,
    this.lossRatio,
    this.width,
    this.height,
    this.framerate,
    this.plisReceived,
    this.rtt,
    this.codecType);