NiceWorkflowNode constructor

NiceWorkflowNode({
  1. required String id,
  2. required NiceWorkflowNodeType type,
  3. String label = '',
  4. double x = 0,
  5. double y = 0,
  6. Map<String, dynamic> config = const {},
  7. List<String> outputs = const [],
})

Implementation

NiceWorkflowNode({
  required this.id,
  required this.type,
  this.label = '',
  this.x = 0,
  this.y = 0,
  this.config = const {},
  this.outputs = const [],
});