Config constructor

const Config({
  1. DataType dataType = DataType.dataList,
  2. String parentId = 'parentId',
  3. String label = 'name',
  4. String id = 'id',
  5. String children = 'children',
  6. String allCheckedNodeName = '全部',
  7. String? nullCheckedNodeName,
  8. String breadcrumbRootName = '根',
})

Implementation

const Config(
    {this.dataType = DataType.dataList,
    this.parentId = 'parentId',
    this.label = 'name',
    this.id = 'id',
    this.children = 'children',
    this.allCheckedNodeName = '全部',
    this.nullCheckedNodeName,
    this.breadcrumbRootName = '根'});