Workflow constructor

const Workflow({
  1. required String name,
  2. TMetaData? metaData,
  3. required List<Step> steps,
  4. required EndGoal endGoal,
  5. List<Instruction>? instructions,
  6. List<Tool>? tools,
  7. List<ToolSet>? toolSets,
})

Implementation

const Workflow({
  required super.name,
  super.metaData,
  required this.steps,
  required this.endGoal,
  this.instructions,
  this.tools,
  this.toolSets,
});