WorkflowConnection constructor

WorkflowConnection({
  1. required WorkflowNode source,
  2. required WorkflowNode target,
  3. required String type,
})

Implementation

WorkflowConnection({
  required this.source,
  required this.target,
  required this.type,
});