startTimer method

void startTimer()

Implementation

void startTimer() {
  state = Timer(durationUntilTomorrow, () {
    _timerEventStreamController.add(const TimerEvent.dateChanged());
    startTimer();
  });
}