declareSteps method
Says id should be these steps. Runs nothing.
Implementation
Future<void> declareSteps(String id, List<PresetStep> steps) async =>
put('/nodes/$id/desired-state', {
'steps': [for (final step in steps) step.toJson()],
});