open method

void open()

Implementation

void open() {
  currentHeight = maxHeight;
  if (onShow != null) {
    onShow!();
  }
  update();
}