AppResourceSnapshot constructor

const AppResourceSnapshot({
  1. required DateTime timestamp,
  2. double? cpuPercent,
  3. double? memoryMb,
  4. double? fps,
  5. double? cpuPercentAvg,
  6. double? memoryMbAvg,
  7. double? fpsAvg,
  8. int? networkRxBytes,
  9. int? networkTxBytes,
  10. int? networkRxDeltaBytes,
  11. int? networkTxDeltaBytes,
  12. double? networkRxBytesPerSec,
  13. double? networkTxBytesPerSec,
  14. int? diskReadBytes,
  15. int? diskWriteBytes,
  16. int? diskReadDeltaBytes,
  17. int? diskWriteDeltaBytes,
  18. double? diskReadBytesPerSec,
  19. double? diskWriteBytesPerSec,
})

Implementation

const AppResourceSnapshot({
  required this.timestamp,
  this.cpuPercent,
  this.memoryMb,
  this.fps,
  this.cpuPercentAvg,
  this.memoryMbAvg,
  this.fpsAvg,
  this.networkRxBytes,
  this.networkTxBytes,
  this.networkRxDeltaBytes,
  this.networkTxDeltaBytes,
  this.networkRxBytesPerSec,
  this.networkTxBytesPerSec,
  this.diskReadBytes,
  this.diskWriteBytes,
  this.diskReadDeltaBytes,
  this.diskWriteDeltaBytes,
  this.diskReadBytesPerSec,
  this.diskWriteBytesPerSec,
});