TFormField<T> constructor
TFormField<T> ({
- required Widget builder(
- ValueChanged<
T?>
- ValueChanged<
- TFieldProp<
T> ? prop, - bool isSubForm = false,
Creates a form field.
Implementation
TFormField({required this.builder, this.prop, this.isSubForm = false}) {
_field = builder.call(_onValueChanged);
}