RtcStats constructor

RtcStats(
  1. int duration,
  2. int txBytes,
  3. int rxBytes,
  4. int txAudioBytes,
  5. int txVideoBytes,
  6. int rxAudioBytes,
  7. int rxVideoBytes,
  8. int txKBitRate,
  9. int rxKBitRate,
  10. int txAudioKBitRate,
  11. int rxAudioKBitRate,
  12. int txVideoKBitRate,
  13. int rxVideoKBitRate,
  14. int userCount,
  15. int lastmileDelay,
  16. int txPacketLossRate,
  17. int rxPacketLossRate,
  18. double cpuTotalUsage,
  19. double cpuAppUsage,
  20. int gatewayRtt,
  21. double memoryAppUsageRatio,
  22. double memoryTotalUsageRatio,
  23. int memoryAppUsageInKbytes,
)

Constructs the RtcStats.

Implementation

RtcStats(
  this.duration,
  this.txBytes,
  this.rxBytes,
  this.txAudioBytes,
  this.txVideoBytes,
  this.rxAudioBytes,
  this.rxVideoBytes,
  this.txKBitRate,
  this.rxKBitRate,
  this.txAudioKBitRate,
  this.rxAudioKBitRate,
  this.txVideoKBitRate,
  this.rxVideoKBitRate,
  this.userCount,
  this.lastmileDelay,
  this.txPacketLossRate,
  this.rxPacketLossRate,
  this.cpuTotalUsage,
  this.cpuAppUsage,
  this.gatewayRtt,
  this.memoryAppUsageRatio,
  this.memoryTotalUsageRatio,
  this.memoryAppUsageInKbytes,
);