allowProceeding property

bool get allowProceeding

Implementation

bool get allowProceeding {
  if (!isMandatory) {
    return true;
  }
  if (isMandatory && value) {
    return true;
  }
  return false;
}