NERtcStats constructor

NERtcStats({
  1. int? rxAudioBytes,
  2. int? rxAudioKBitRate,
  3. int? rxAudioJitter,
  4. int? rxAudioPacketLossRate,
  5. int? rxAudioPacketLossSum,
  6. int? rxVideoBytes,
  7. int? rxBytes,
  8. int? rxVideoJitter,
  9. int? rxVideoKBitRate,
  10. int? rxVideoPacketLossRate,
  11. int? rxVideoPacketLossSum,
  12. int? cpuAppUsage,
  13. int? cpuTotalUsage,
  14. int? memoryAppUsageInKBytes,
  15. int? memoryAppUsageRatio,
  16. int? memoryTotalUsageRatio,
  17. int? totalDuration,
  18. int? txAudioBytes,
  19. int? txAudioJitter,
  20. int? txAudioKBitRate,
  21. int? txAudioPacketLossRate,
  22. int? txAudioPacketLossSum,
  23. int? txBytes,
  24. int? txVideoBytes,
  25. int? txVideoJitter,
  26. int? txVideoKBitRate,
  27. int? txVideoPacketLossRate,
  28. int? txVideoPacketLossSum,
  29. int? upRtt,
  30. int? downRtt,
})

Implementation

NERtcStats(
    {this.rxAudioBytes,
    this.rxAudioKBitRate,
    this.rxAudioJitter,
    this.rxAudioPacketLossRate,
    this.rxAudioPacketLossSum,
    this.rxVideoBytes,
    this.rxBytes,
    this.rxVideoJitter,
    this.rxVideoKBitRate,
    this.rxVideoPacketLossRate,
    this.rxVideoPacketLossSum,
    this.cpuAppUsage,
    this.cpuTotalUsage,
    this.memoryAppUsageInKBytes,
    this.memoryAppUsageRatio,
    this.memoryTotalUsageRatio,
    this.totalDuration,
    this.txAudioBytes,
    this.txAudioJitter,
    this.txAudioKBitRate,
    this.txAudioPacketLossRate,
    this.txAudioPacketLossSum,
    this.txBytes,
    this.txVideoBytes,
    this.txVideoJitter,
    this.txVideoKBitRate,
    this.txVideoPacketLossRate,
    this.txVideoPacketLossSum,
    this.upRtt,
    this.downRtt});