network property

double? get network

The most recent measurement of the process network usage, in bytes per second. Only available when receiving the object as part of a callback from onUpdated or onUpdatedWithMemory.

Implementation

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

Implementation

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