TRTCStatistics constructor

TRTCStatistics(
  1. {int appCpu = -1,
  2. int systemCpu = -1,
  3. int upLoss = -1,
  4. int downLoss = -1,
  5. int rtt = -1,
  6. int gatewayRtt = -1,
  7. int sentBytes = -1,
  8. int receivedBytes = -1,
  9. List<TRTCLocalStatistics>? localStatisticsArray,
  10. List<TRTCRemoteStatistics>? remoteStatisticsArray}
)

Implementation

TRTCStatistics({
  this.appCpu = -1,
  this.systemCpu = -1,
  this.upLoss = -1,
  this.downLoss = -1,
  this.rtt = -1,
  this.gatewayRtt = -1,
  this.sentBytes = -1,
  this.receivedBytes = -1,
  this.localStatisticsArray,
  this.remoteStatisticsArray,
});