AutofillGroup constructor Null safety
- {Key? key,
- required Widget child,
- AutofillContextAction onDisposeAction = AutofillContextAction.commit}
Creates a scope for autofillable input fields.
The child argument must not be null.
Implementation
const AutofillGroup({
super.key,
required this.child,
this.onDisposeAction = AutofillContextAction.commit,
}) : assert(child != null);