finished property

bool get finished

If the timer is finished, timers that repeat never finish

Implementation

bool get finished =>
    (_current >= limit && !repeat) ||
    (tickCount != null && _currentTick >= tickCount!);