NiceTreeList<T> constructor
- Key? key,
- required List<
NiceTreeListNode< roots,T> > - required List<
NiceTreeListColumn< columns,T> > - void onNodeTap(
- NiceTreeListNode<
T> node
- NiceTreeListNode<
- double indentStep = 24,
- bool showHeader = true,
- double rowHeight = 40,
Implementation
const NiceTreeList({
super.key,
required this.roots,
required this.columns,
this.onNodeTap,
this.indentStep = 24,
this.showHeader = true,
this.rowHeight = 40,
});