reset method

void reset()

Resets the progress tracker to its initial state.

Implementation

void reset() {
  _progress = 0.0;
  _phase = StsPhase.sitting;
  _lastAccY = null;
  progressNotifier.value = 0.0;
}