TreeLinePainter constructor

TreeLinePainter({
  1. Color color = Colors.black,
  2. double strokeWidth = 3,
  3. required int levelWidth,
  4. required int level,
  5. bool isHasIcon = false,
  6. required double iconSize,
})

Implementation

TreeLinePainter(
    {this.color = Colors.black,
    this.strokeWidth = 3,
    required this.levelWidth,
    required this.level,
    this.isHasIcon = false,
    required this.iconSize});