TreeView constructor

TreeView({
  1. required List<TreeViewNode> nodes,
  2. Style? labelStyle,
  3. Style? connectorStyle,
  4. int indentSize = 2,
  5. Key? key,
})

Implementation

TreeView({
  required this.nodes,
  this.labelStyle,
  this.connectorStyle,
  this.indentSize = 2,
  super.key,
});