NodeOutput constructor

NodeOutput({
  1. required String id,
  2. required List<EdgeInput> next,
  3. NodeSize? size,
  4. AnchorType? anchorType,
  5. String? from,
  6. String? to,
  7. AnchorOrientation? orientation,
  8. bool isAnchor = false,
  9. List<String> passedIncomes = const [],
  10. List<String> renderIncomes = const [],
  11. int? childrenOnMatrix,
  12. AnchorMargin? anchorMargin,
})

Implementation

NodeOutput({
  required String id,
  required List<EdgeInput> next,
  NodeSize? size,
  this.anchorType,
  this.from,
  this.to,
  this.orientation,
  this.isAnchor = false,
  this.passedIncomes = const [],
  this.renderIncomes = const [],
  this.childrenOnMatrix,
  this.anchorMargin,
}) : super(id: id, next: next, size: size);