isPaused property

bool isPaused

True if this Timer is armed but not currently active.

If this timer isExpired or isCancelled, it is not considered to be paused.

Implementation

bool get isPaused => _timer == null && !isExpired && !isCancelled;