GForm constructor

const GForm({
  1. Key? key,
  2. required GFormController controller,
  3. required Widget child,
  4. AutovalidateMode? autovalidateMode,
  5. bool canPop = true,
  6. PopInvokedWithResultCallback<Object?>? onPopInvokedWithResult,
  7. 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,
});