CpuTime class

Constructors

CpuTime({required double user, required double kernel, required double idle, required double total})
CpuTime.fromJS(CpuTime _wrapped)

Properties

hashCode int
The hash code for this object.
no setterinherited
idle double
The cumulative time spent idle by this processor.
getter/setter pair
kernel double
The cumulative time used by kernel programs on this processor.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toJS → CpuTime
no setter
total double
The total cumulative time for this processor. This value is equal to user + kernel + idle.
getter/setter pair
user double
The cumulative time used by userspace programs on this processor.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited