pause method

void pause()

暂停倒计时

Implementation

void pause() {
  if (statusNotifier.value == CountdownStatus.running) {
    onPause?.call();
  }
}