WorkflowStep constructor
WorkflowStep({
- required String id,
- required String name,
- required WorkflowStepType type,
- required Map<
String, dynamic> parameters, - List<
String> ? nextSteps, - List<
String> ? onSuccess, - List<
String> ? onFailure, - int? timeout,
- String? description,
- bool? isOptional,
- Map<
String, dynamic> ? inputMapping, - Map<
String, dynamic> ? outputMapping, - Map<
String, String> ? metadata, - List<
String> ? tags,
Implementation
WorkflowStep({
required this.id,
required this.name,
required this.type,
required this.parameters,
this.nextSteps,
this.onSuccess,
this.onFailure,
this.timeout,
this.description,
this.isOptional,
this.inputMapping,
this.outputMapping,
this.metadata,
this.tags,
});