shouldOpenDialog property

bool shouldOpenDialog

Whether the dialog should be opened.

Implementation

bool get shouldOpenDialog {
  for (Condition condition in conditions) {
    if (!condition.isMet) {
      return false;
    }
  }
  return true;
}