FormifyModifyValue typedef

FormifyModifyValue = dynamic Function(dynamic value)

A typedef for a function that can be used to modify a value before setting it in a Formify form field.

The value parameter represents the current value of the field, and this function should return the modified value that will be set in the form field. You can use this function to apply custom transformations or validations to the input value before it's saved in the form.

Implementation

typedef FormifyModifyValue = dynamic Function(dynamic value);