FormFieldConfig constructor

FormFieldConfig({
  1. required String keyName,
  2. required FieldType type,
  3. required String label,
  4. String? hint,
  5. bool required = false,
  6. List<String>? options,
  7. double? min,
  8. double? max,
  9. int? divisions,
  10. dynamic initialValue,
  11. String? validator(
    1. dynamic
    )?,
})

Implementation

FormFieldConfig({
  required this.keyName,
  required this.type,
  required this.label,
  this.hint,
  this.required = false,
  this.options,
  this.min,
  this.max,
  this.divisions,
  this.initialValue,
  this.validator,
});