NiceTreeGridNode<T> constructor

NiceTreeGridNode<T>({
  1. required String key,
  2. required T data,
  3. List<NiceTreeGridNode<T>> children = const [],
})

Implementation

NiceTreeGridNode({
  required this.key,
  required this.data,
  this.children = const [],
});