KinTreeNode<T> constructor

const KinTreeNode<T>({
  1. required T value,
  2. required String label,
  3. IconData? icon,
  4. List<KinTreeNode<T>> children = const [],
})

Implementation

const KinTreeNode({
  required this.value,
  required this.label,
  this.icon,
  this.children = const [],
});