isStarted method

bool isStarted()

Checks if the timer is started.

Returns true if the timer is started and false if it is stopped.

Implementation

bool isStarted() {
  return _timer != null;
}