reset method
void
reset()
Manually reset the animation to its initial state
Implementation
void reset() {
if (mounted && !_isDisposed && !_controller.isAnimating && _isInitialized) {
_controller.reset();
}
}
Manually reset the animation to its initial state
void reset() {
if (mounted && !_isDisposed && !_controller.isAnimating && _isInitialized) {
_controller.reset();
}
}