DataFieldItem constructor

DataFieldItem({
  1. dynamic id,
  2. String? label,
  3. dynamic value,
  4. dynamic type,
})

Supply a identifier, a label, a value and a maybe a type of value.

Implementation

DataFieldItem({
  this.id,
  this.label,
  this.value,
  this.type,
});