updateIsOpen method

void updateIsOpen(
  1. bool value
)

Updates the internal open state. Used internally by FloatyNavBar.

Implementation

void updateIsOpen(bool value) {
  if (_isOpen == value) return;
  _isOpen = value;
  notifyListeners();
}