hide method

Future<void> hide()

Hides the sliding panel (i.e. is invisible)

Implementation

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