totalSteps property
int
get
totalSteps
Gets the total number of steps (excluding skipped ones).
Implementation
int get totalSteps {
return _flattenedSteps.where((step) => !step.shouldSkip(_answers)).length;
}