TaskEntity constructor

TaskEntity({
  1. String? fieldId,
  2. String? type,
  3. String? label,
  4. bool? required,
  5. int? min,
  6. int? max,
  7. String? placeholder,
  8. List<EntityValue>? entityValues,
  9. bool isEdited = false,
})

Implementation

TaskEntity({
  this.fieldId,
  this.type,
  this.label,
  this.required,
  this.min,
  this.max,
  this.placeholder,
  this.entityValues,
  this.isEdited = false,
});