close method

Future<void> close()

Closes the sliding panel to its collapsed state (i.e. to the minHeight)

Implementation

Future<void> close() {
  assert(isAttached, "PanelController must be attached to a SlidingUpPanel");
  return _panelState!._close();
}