DynamicFieldProps constructor

DynamicFieldProps({
  1. required String fieldKey,
  2. required Field field,
  3. dynamic value,
  4. required dynamic onChange(
    1. dynamic
    ),
  5. String? error,
  6. bool? disabled,
  7. List<Option>? options,
})

Implementation

DynamicFieldProps({
  required this.fieldKey,
  required this.field,
  this.value,
  required this.onChange,
  this.error,
  this.disabled,
  this.options,
});