getStepResultById method

StepResult? getStepResultById(
  1. String id
)

Implementation

StepResult? getStepResultById(String id) {
  return results.firstWhereOrNull((element) => element.id == id);
}