DataWedgeWorkflowConfiguration constructor
const
DataWedgeWorkflowConfiguration({
- required String workflowName,
- String workflowInputSource = DataWedgeWorkflowInputSource.imager,
- List<
DataWedgeWorkflowModule> modules = const <DataWedgeWorkflowModule>[],
Creates a new workflow configuration.
workflowName is the name of the workflow (use DataWedgeWorkflowName constants).
workflowInputSource is the input source (use DataWedgeWorkflowInputSource constants).
modules are the workflow modules to configure.
Implementation
const DataWedgeWorkflowConfiguration({
required this.workflowName,
this.workflowInputSource = DataWedgeWorkflowInputSource.imager,
this.modules = const <DataWedgeWorkflowModule>[],
});