updateIsOpen method
Updates the internal open state. Used internally by FloatyNavBar.
Implementation
void updateIsOpen(bool value) {
if (_isOpen == value) return;
_isOpen = value;
notifyListeners();
}
Updates the internal open state. Used internally by FloatyNavBar.
void updateIsOpen(bool value) {
if (_isOpen == value) return;
_isOpen = value;
notifyListeners();
}