TreeViewTheme constructor
const
TreeViewTheme({})
Creates a TreeViewTheme.
Implementation
const TreeViewTheme({
this.lineColor = Colors.grey,
this.lineStyle = LineStyle.connected,
this.lineThickness = 2.0,
this.indent = 40.0,
this.roundLineCorners = false,
this.direction = TextDirection.ltr,
}) : assert(
indent >= lineThickness,
'The indent must not be less than lineThickness',
);