isOpen property

bool get isOpen

Whether or not the associated menu is currently open.

Implementation

bool get isOpen {
  assert(_anchor != null);
  return _anchor!._isOpen;
}