isActive property

bool isActive

Indicates whether the Ticker is currently active or not. Whether time is elapsing for this Ticker. Becomes true when resume is called and false when pause is called.

Implementation

bool get isActive {
  return _ticker?.isActive ?? false;
}