ReactiveForm<T> constructor

const ReactiveForm<T>({
  1. Key? key,
  2. required FormGroup formGroup,
  3. required Widget child,
  4. ReactiveFormCanPopCallback? canPop,
  5. ReactiveFormPopInvokedWithResultCallback<T>? onPopInvokedWithResult,
})

Creates and instance of ReactiveForm.

The formGroup and child arguments are required.

Implementation

const ReactiveForm({
  super.key,
  required this.formGroup,
  required this.child,
  this.canPop,
  this.onPopInvokedWithResult,
});