isLow property

bool get isLow

Whether the battery level is low but not critical.

Implementation

bool get isLow =>
    currentLevel <= minReliableLevel &&
    currentLevel > criticalLevel &&
    !isCharging;