reset method

Future reset()

Call this method to revert the animations

Implementation

Future reset() async {
  await _checkAnimationController.reverse();

  submitted = false;

  await _shrinkAnimationController.reverse();

  await _resizeAnimationController.reverse();

  await _cancelAnimation();
}