TekioFieldData constructor

TekioFieldData({
  1. required String fieldKey,
  2. String? groupingKey,
  3. required TekioFieldType? fieldType,
  4. String? fieldLabel,
  5. String? fieldHint,
  6. int maxLines = 1,
  7. int? minLength,
  8. int? maxLength,
  9. bool isMandatory = false,
  10. int? order,
  11. String? regexValidation,
  12. int? maxValue,
  13. int? minValue,
  14. bool enabled = true,
})

Implementation

TekioFieldData({
  required this.fieldKey,
  this.groupingKey,
  required this.fieldType,
  this.fieldLabel,
  this.fieldHint,
  this.maxLines = 1,
  this.minLength,
  this.maxLength,
  this.isMandatory = false,
  this.order,
  this.regexValidation,
  this.maxValue,
  this.minValue,
  this.enabled = true,
});