reset method

void reset()

Resets the animation to lowerBound with AnimationStatus.dismissed.

Implementation

void reset() {
  _value = lowerBound;
  _status = AnimationStatus.dismissed;
  _startTime = null;
  _repeating = false;
  notifyListeners();
  _notifyStatusListeners();
}