animationReverse method

Future animationReverse()

Implementation

Future animationReverse() async {
  if (isTop) {
    await _animationController.reverse();
    return _triangleController.reverse();
  } else {
    await _triangleController.reverse();
    return _animationController.reverse();
  }
}