CompositeNode constructor

CompositeNode(
  1. String name,
  2. List<Node> children, {
  3. Offset? position,
  4. String layout = 'vertical',
  5. double gap = 5,
  6. Subtree? subtree,
})

Implementation

CompositeNode(String name, this.children,
    {Offset? position,
    this.layout = 'vertical',
    this.gap = 5,
    Subtree? subtree})
    : super(name, position: position, subtree: subtree);