BaseTreeModel constructor

BaseTreeModel({
  1. String? id,
  2. List<BaseTreeModel>? children,
})

Implementation

BaseTreeModel({
  this.id,
  this.children,
});