isPanelClosed property

bool isPanelClosed

Returns whether or not the panel is closed.

Implementation

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