dailyRemaining property

int? get dailyRemaining

Remaining tokens in the daily budget (null if unlimited).

Implementation

int? get dailyRemaining =>
    maxTokensPerDay != null ? maxTokensPerDay! - _dailyTokens : null;