BatteryState enum Null safety
Indicates the current battery state.
Constructors
- BatteryState()
-
const
Values
- full → const BatteryState
-
The battery is completely full of energy.
const BatteryState(0)
- charging → const BatteryState
-
The battery is currently storing energy.
const BatteryState(1)
- discharging → const BatteryState
-
The battery is currently losing energy.
const BatteryState(2)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
BatteryState> -
A constant List of the values in this enum, in order of their declaration.
[full, charging, discharging]