FormEntryInterceptor<T> constructor
const
FormEntryInterceptor<T> ({
- Key? key,
- required Widget child,
- ValueChanged<
T> ? onValueReported,
Creates a FormEntryInterceptor.
Parameters:
child(Widget, required): The form field to wrap.onValueReported(ValueChanged<T>?, optional): Called with new values.
Implementation
const FormEntryInterceptor(
{super.key, required this.child, this.onValueReported});