cpu property

double? get cpu

The most recent measurement of the process's CPU usage, expressed as the percentage of a single CPU core used in total, by all of the process's threads. This gives a value from zero to CpuInfo.numOfProcessors*100, which can exceed 100% in multi-threaded processes. Only available when receiving the object as part of a callback from onUpdated or onUpdatedWithMemory.

Implementation

double? get cpu => _wrapped.cpu;
set cpu (double? v)

Implementation

set cpu(double? v) {
  _wrapped.cpu = v;
}