TimerManager constructor
TimerManager({
- required CheckpointStore store,
- Duration pollInterval = const Duration(seconds: 1),
Creates a TimerManager.
Implementation
TimerManager({
required CheckpointStore store,
this.pollInterval = const Duration(seconds: 1),
}) : _store = store;