pause method

void pause()

This Method Pauses the Countdown Timer

Implementation

void pause() {
  _state._controller?.stop(canceled: false);
  isPaused = true;
}