isNearCap property
True when the user is within 10% of their cap (warning zone).
Implementation
bool get isNearCap {
final r = remaining;
if (r == null) return false;
final cap = totalCap ?? dailyCap ?? weeklyCap;
if (cap == null || cap == 0) return false;
return r / cap < 0.1;
}