open method

Future<void> open()

Opens the sliding panel fully (i.e. to the maxHeight)

Implementation

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