GForm constructor
const
GForm({
- Key? key,
- required GFormController controller,
- required Widget child,
- AutovalidateMode? autovalidateMode,
- bool canPop = true,
- PopInvokedWithResultCallback<
Object?> ? onPopInvokedWithResult, - void onChanged()?,
Creates a GForm bound to controller.
Implementation
const GForm({
super.key,
required this.controller,
required this.child,
this.autovalidateMode,
this.canPop = true,
this.onPopInvokedWithResult,
this.onChanged,
});