NiceTreeSelectNode<T> constructor

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

Implementation

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