animationForward method
Implementation
Future animationForward() async {
if (isTop) {
await _triangleController.forward();
_animationController.forward();
} else {
await _animationController.forward();
_triangleController.forward();
}
}