DataWedgeWorkflowConfiguration constructor

const DataWedgeWorkflowConfiguration({
  1. required String workflowName,
  2. String workflowInputSource = DataWedgeWorkflowInputSource.imager,
  3. 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>[],
});