isCurrentStepAnswered property

bool get isCurrentStepAnswered

Checks if the current step has an answer.

Returns:

  • A boolean value indicating if the current step has an answer.

Implementation

bool get isCurrentStepAnswered {
  return currentStep.answer != null;
}