WorkflowStep constructor

WorkflowStep({
  1. String? id,
  2. String? uuid,
  3. String? name,
  4. String? templateId,
  5. bool? active,
  6. bool? shouldStopOnFail,
  7. String? template,
  8. List<WorkflowStepFilter> filters = const [],
  9. String? parentId,
  10. List<WorkflowStep> variants = const [],
})

Implementation

WorkflowStep({
  this.id,
  this.uuid,
  this.name,
  this.templateId,
  this.active,
  this.shouldStopOnFail,
  this.template,
  this.filters = const [],
  this.parentId,
  this.variants = const [],
});