resetAnimation method

void resetAnimation()

Reset animation to initial state

Implementation

void resetAnimation() {
  _animation = _controller.drive(ConstantTween<double>(0));
  notifyListeners();
  _controller.reset();
}