passedSteps property

int passedSteps

The number of steps that had no errors and successfully passed.

Implementation

int get passedSteps =>
    _steps.values.where((step) => step.error == null).length;