TimerManager constructor

TimerManager({
  1. required CheckpointStore store,
  2. Duration pollInterval = const Duration(seconds: 1),
})

Creates a TimerManager.

Implementation

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