pending property

List<SetupStepResult> get pending

All steps that did not succeed (skipped or failed). Used to render the post-setup checklist of remaining work.

Implementation

List<SetupStepResult> get pending =>
    results.where((SetupStepResult r) => !r.success).toList(growable: false);