WorkflowStep<INPUT, OUTPUT> constructor
WorkflowStep<INPUT, OUTPUT> ({
- required WorkflowStepType workflowStepType,
- List<
GuardRailDto> ? guardRails, - INPUT? input,
- OUTPUT? output,
Creates a WorkflowStep with the given properties.
Implementation
WorkflowStep({
required this.workflowStepType,
this.guardRails,
this.input,
this.output,
});