addStep method

void addStep(
  1. String name,
  2. String robot,
  3. Map<String, dynamic> options
)

Adds a step to the Assembly/Template, with the given robot and options

Implementation

void addStep(String name, String robot, Map<String, dynamic> options) {
  options["robot"] = robot;
  steps[name] = options;
}