start method

dynamic start()

Start countdown

Implementation

start() {
  disposeTimer();
  _isRunning = true;
  _countdownPeriodicEvent();
  _countdownTimer = Timer.periodic(intervals, (timer) {
    _countdownPeriodicEvent();
  });
}