start method
Starts the task
Implementation
void start(Function(Duration) scheduleNext) {
if (_state.isPaused) return;
_scheduleNext(scheduleNext);
}
Starts the task
void start(Function(Duration) scheduleNext) {
if (_state.isPaused) return;
_scheduleNext(scheduleNext);
}