show method

void show()

Implementation

void show() {
  if (_state == null) {
    BadFl.log(
      module: 'widget/BadPopup',
      message:
          'PopupController.show is called without any attached popup (maybe automatically disposed at this point)',
    );
    return;
  }

  _state!.show();
}