WorkflowStep<INPUT, OUTPUT> constructor

WorkflowStep<INPUT, OUTPUT>({
  1. required WorkflowStepType workflowStepType,
  2. List<GuardRailDto>? guardRails,
  3. INPUT? input,
  4. OUTPUT? output,
})

Creates a WorkflowStep with the given properties.

Implementation

WorkflowStep({
  required this.workflowStepType,
  this.guardRails,
  this.input,
  this.output,
});