Attribute constructor

Attribute({
  1. int? id,
  2. String? validationRegrex,
  3. String? fieldName,
  4. String? fieldType,
  5. String? fieldSubType,
  6. List<ValueList>? valueList,
  7. String? label,
  8. int? min,
  9. int? max,
  10. dynamic comment,
  11. bool? mandatory,
  12. bool? unique,
  13. String? currency,
})

Implementation

Attribute(
    {this.id,
    this.validationRegrex,
    this.fieldName,
    this.fieldType,
    this.fieldSubType,
    this.valueList,
    this.label,
    this.min,
    this.max,
    this.comment,
    this.mandatory,
    this.unique,
    this.currency});