hideMenu method
void
hideMenu()
Implementation
void hideMenu() async {
await animationController.reverse();
floatingDropdown?.remove();
isDropdownOpened.value = !isDropdownOpened.value;
widget.callback?.call(isDropdownOpened.value);
}