reverse method

Future<void> reverse()

Manually reverse the animation (scale down)

Implementation

Future<void> reverse() async {
  if (!mounted || _controller.isAnimating || !_isInitialized) return;
  await _controller.reverse().orCancel;
}