ConnectionPainter constructor

ConnectionPainter({
  1. required List<WorkflowConnection> connections,
  2. required CoordinateTransformer transformer,
  3. bool isCreatingConnection = false,
  4. WorkflowNode? connectionStartNode,
  5. Offset? connectionEndPoint,
  6. String? connectionType,
})

Implementation

ConnectionPainter({
  required this.connections,
  required this.transformer,
  this.isCreatingConnection = false,
  this.connectionStartNode,
  this.connectionEndPoint,
  this.connectionType,
});