TreeViewController constructor

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

Implementation

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