Attribute constructor

Attribute({
  1. String? id,
  2. String? label,
  3. String? min,
  4. String? max,
  5. String? fieldName,
  6. String? fieldSubType,
  7. bool? mandatory,
  8. bool? fetchRemote,
  9. bool? hidden,
  10. bool? formatAmount,
  11. bool? unique,
  12. bool? isAmount,
  13. bool? isAmountPrepopulate,
  14. bool? isAmountModifiable,
  15. bool? excessAllowed,
})

Implementation

Attribute(
    {this.id,
      this.label,
      this.min,
      this.max,
      this.fieldName,
      this.fieldSubType,
      this.mandatory,
      this.fetchRemote,
      this.hidden,
      this.formatAmount,
      this.unique,
      this.isAmount,
      this.isAmountPrepopulate,
      this.isAmountModifiable,
      this.excessAllowed});