FormEntryInterceptor<T> constructor

const FormEntryInterceptor<T>({
  1. Key? key,
  2. required Widget child,
  3. 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});