NodeWidget constructor

NodeWidget(
  1. TreeModel tree,
  2. TreeModel chooseTree, {
  3. Key? key,
  4. required dynamic onNodeDataChanged(
    1. TreeModel item
    ),
})

Implementation

NodeWidget(
  this.tree,
  this.chooseTree, {
  super.key,
  required this.onNodeDataChanged,
});