reverse method
Manually reverse the animation (fade out)
Implementation
Future<void> reverse() async {
if (!mounted || _controller.isAnimating || !_isInitialized) return;
await _controller.reverse().orCancel;
}
Manually reverse the animation (fade out)
Future<void> reverse() async {
if (!mounted || _controller.isAnimating || !_isInitialized) return;
await _controller.reverse().orCancel;
}