reset method

void reset()

This Method resets the Countdown Timer

Implementation

void reset() {
  _state._controller?.reset();
  isStarted = _state.widget.autoStart;
  isPaused = false;
  isResumed = false;
}