treeData method
Implementation
void treeData(List? data) {
assert(data != null, 'The data should not be empty');
this.data = data;
// notifyListeners();
}
void treeData(List? data) {
assert(data != null, 'The data should not be empty');
this.data = data;
// notifyListeners();
}