IgnoreForm<T> constructor
Creates an IgnoreForm widget.
Parameters:
child(Widget, required): The widget subtree to wrapignoring(bool, default: true): Whether to block form participation
Example:
IgnoreForm(
ignoring: shouldIgnore,
child: MyFormField(),
);
Implementation
const IgnoreForm({super.key, this.ignoring = true, required this.child});