EasyTreeView<E> constructor

const EasyTreeView<E>({
  1. Key? key,
  2. required List<EasyTreeNode<E>> nodes,
  3. required EasyTreeItemBuilder<EasyTreeNode<E>> itemBuilder,
  4. required EasyTreeController<E> controller,
  5. EasyTreeNodeCallback<EasyTreeNode<E>>? callback,
  6. ScrollController? scrollController,
  7. EasyTreeConfiguration? configuration,
})

Implementation

const EasyTreeView({
  Key? key,
  required this.nodes,
  required this.itemBuilder,
  required this.controller,
  this.callback,
  this.scrollController,
  this.configuration,
}) : super(key: key);