CustomTreeNodeStyle constructor

CustomTreeNodeStyle({
  1. Axis direction = Axis.horizontal,
  2. double mainAxisLeadingWidth = 30,
  3. double mainAxisTrailingWidth = 30,
  4. double crossAxisSpace = 20,
  5. Color strokeColor = const Color(0xFFB9B9B9),
  6. double strokeWidth = 1,
})

Implementation

CustomTreeNodeStyle({
  this.direction = Axis.horizontal,
  this.mainAxisLeadingWidth = 30,
  this.mainAxisTrailingWidth = 30,
  this.crossAxisSpace = 20,
  this.strokeColor = const Color(0xFFB9B9B9),
  this.strokeWidth = 1,
});