LoopNode constructor

LoopNode({
  1. required String id,
  2. required NodeOutput node,
  3. required int x,
  4. required int y,
  5. bool isSelfLoop = false,
})

Implementation

LoopNode({
  required this.id,
  required this.node,
  required this.x,
  required this.y,
  this.isSelfLoop = false,
});