isPanelAnimating property

bool isPanelAnimating

Returns whether or not the panel is currently animating.

Implementation

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