reset method

Future reset()

Call this method to revert the animations

Implementation

Future reset() async {
  await _checkAnimationController.reverse().orCancel;
  submitted = false;
  await _shrinkAnimationController.reverse().orCancel;
  await _resizeAnimationController.reverse().orCancel;
  await _cancelAnimation();
}