TreeViewController<T> constructor

TreeViewController<T>({
  1. List<Node<T>> children = const [],
  2. String? selectedKey,
})

Implementation

TreeViewController({
  this.children = const [],
  this.selectedKey,
});