TreeRow<T> constructor

const TreeRow<T>({
  1. required TreeNode<T> node,
  2. required int depth,
  3. required bool expanded,
  4. required bool hasChildren,
  5. required bool isLast,
  6. required List<bool> ancestorHasNext,
})

Implementation

const TreeRow({
  required this.node,
  required this.depth,
  required this.expanded,
  required this.hasChildren,
  required this.isLast,
  required this.ancestorHasNext,
});