Config constructor

const Config({
  1. DataType dataType = DataType.DataMap,
  2. String parentId = 'parentId',
  3. String value = 'value',
  4. String label = 'label',
  5. String id = 'id',
  6. String children = 'children',
})

Implementation

const Config({
  this.dataType = DataType.DataMap,
  this.parentId = 'parentId',
  this.value = 'value',
  this.label = 'label',
  this.id = 'id',
  this.children = 'children',
});