removeStep method

void removeStep(
  1. String name
)

Removes a step from the Assembly/Template with this name

Implementation

void removeStep(String name) {
  steps.remove(name);
}