Company constructor

Company({
  1. String? field,
  2. dynamic value,
  3. String? dataType,
  4. bool? editable,
})

Implementation

Company({
  this.field,
  this.value,
  this.dataType,
  this.editable,
});