AppResourceSnapshot constructor
const
AppResourceSnapshot({
- required DateTime timestamp,
- double? cpuPercent,
- double? memoryMb,
- double? fps,
- double? cpuPercentAvg,
- double? memoryMbAvg,
- double? fpsAvg,
- int? networkRxBytes,
- int? networkTxBytes,
- int? networkRxDeltaBytes,
- int? networkTxDeltaBytes,
- double? networkRxBytesPerSec,
- double? networkTxBytesPerSec,
- int? diskReadBytes,
- int? diskWriteBytes,
- int? diskReadDeltaBytes,
- int? diskWriteDeltaBytes,
- double? diskReadBytesPerSec,
- 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,
});