reset method

void reset()

This Method resets the Countdown Timer

Implementation

void reset() {
  if (_state != null && _state?._controller != null) {
    _state?._controller?.reset();
    isStarted = _state?.widget.autoStart ?? false;
    isRestarted = false;
    isPaused = false;
    isResumed = false;
  }
}