RtcAudioSendStats constructor

RtcAudioSendStats(
  1. int bytesSent,
  2. int sendBitrate,
  3. int packetsLost,
  4. double lossRatio,
  5. int rtt,
  6. int inputLevel,
  7. bool inputActiveFlag,
  8. AudioCodecType codecType,
)

Constructs a RtcAudioSendStats

Implementation

RtcAudioSendStats(
    this.bytesSent,
    this.sendBitrate,
    this.packetsLost,
    this.lossRatio,
    this.rtt,
    this.inputLevel,
    this.inputActiveFlag,
    this.codecType);