shouldBeShown method

bool shouldBeShown(
  1. QuestionnaireState state
)

Implementation

bool shouldBeShown(QuestionnaireState state) {
  if (conditional == null) return true;
  return conditional!.condition.evaluate(state) != false;
}