NiceTreeListNode<T> constructor

NiceTreeListNode<T>({
  1. required T data,
  2. List<NiceTreeListNode<T>> children = const [],
  3. bool expanded = false,
})

Implementation

NiceTreeListNode({
  required this.data,
  this.children = const [],
  this.expanded = false,
});