isLow property
Whether the battery level is low but not critical.
Implementation
bool get isLow =>
currentLevel <= minReliableLevel &&
currentLevel > criticalLevel &&
!isCharging;
Whether the battery level is low but not critical.
bool get isLow =>
currentLevel <= minReliableLevel &&
currentLevel > criticalLevel &&
!isCharging;