CustomTreePainter constructor

CustomTreePainter({
  1. required CustomTreeNodeStyle style,
  2. bool hasChildren = false,
  3. bool hasParent = false,
})

Implementation

CustomTreePainter({
  required this.style,
  this.hasChildren = false,
  this.hasParent = false,
});