isShow method

bool isShow()

Implementation

bool isShow() {
  if (_dialog != null && _dialog!.isShowing()) {
    return true;
  }
  return false;
}