setContentVisible method

void setContentVisible(
  1. bool show
)

Implementation

void setContentVisible(bool show) {
  if (handID != null) {
    AtomicAlertDialog.setVisable(handID!, show);
    return;
  }
  _visible.value = show;
}