animate method
dynamic
animate()
Implementation
animate() {
if (!isOpened) {
isOpenedVisible = !isOpenedVisible;
_animationController.forward();
} else {
_animationController.reverse();
delayOpen();
}
isOpened = !isOpened;
}