TekioFieldData constructor

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

Implementation

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