reset method

void reset()

Immediately resets the controller to its resting closed state (value = 0.0, velocity = 0.0) without running an animation.

Implementation

void reset() {
  _animationController.stop();
  _isClosing = false;
  _hasHandedOff = false;
  _animationController.value = 0.0;
  notifyListeners();
}