pause method

void pause()

暂停倒计时

Implementation

void pause() {
  _timer?.cancel();
  _timer = null;
}