stop method

void stop()

停止倒计时

Implementation

void stop() {
  _timer?.cancel();
  _timer = null;
  _remainingSeconds = 0;
  _updateDisplay();
}