Subtree constructor

Subtree(
  1. List<Node>? children,
  2. ConnectionPoint startPoint, {
  3. double distanceFromParent = 30,
  4. double branchLength = 6,
  5. Color color = Colors.black,
  6. double strokeWidth = 2,
  7. double gapBetweenChildren = 20,
})

Implementation

Subtree(this.children, this.startPoint,
    {this.distanceFromParent = 30,
    this.branchLength = 6,
    this.color = Colors.black,
    this.strokeWidth = 2,
    this.gapBetweenChildren = 20});