KinTreeNode<T> constructor
const
KinTreeNode<T> ({
- required T value,
- required String label,
- IconData? icon,
- List<
KinTreeNode< children = const [],T> >
Implementation
const KinTreeNode({
required this.value,
required this.label,
this.icon,
this.children = const [],
});