isPanelOpen property

bool isPanelOpen

Returns whether or not the panel is open.

Implementation

bool get isPanelOpen {
  assert(isAttached, "PanelController must be attached to a SlidingUpPanel");
  return _panelState!._isPanelOpen;
}