DataListMap<T extends DataMap> constructor

DataListMap<T extends DataMap>({
  1. String name = 'no-named',
  2. bool isData = false,
  3. required DataListCreateFn<T> create,
  4. bool no_update = false,
  5. bool required = false,
  6. String? label,
})

Implementation

DataListMap({
  this.name = 'no-named',
  this.isData = false,
  required this.create,
  this.no_update = false,
  this.required = false,
  String? label,
}) {
  this.label = label ?? name;
}