NodeOutput constructor

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

Implementation

NodeOutput({
  required String id,
  required List<String> next,
  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);