TreeLineStyle constructor

const TreeLineStyle({
  1. Color color = const Color(0xFFD9D9D9),
  2. double width = 1.0,
  3. double indent = 24.0,
  4. bool showVerticalLine = true,
  5. bool showHorizontalLine = true,
})

Implementation

const TreeLineStyle({
  this.color = const Color(0xFFD9D9D9),
  this.width = 1.0,
  this.indent = 24.0,
  this.showVerticalLine = true,
  this.showHorizontalLine = true,
});