getStepWithIdentifier method
- @override
override
Returns the step that matches the specified identifier
. Returns null
if there is no step with the identifier
.
Implementation
@override
RPStep getStepWithIdentifier(String identifier) {
for (var step in _steps) {
if (identifier == step.identifier) {
return step;
}
}
print("Problem: Task Steps out of index");
return null;
}