ReactiveForm<T> constructor
const
ReactiveForm<T> ({
- Key? key,
- required FormGroup formGroup,
- required Widget child,
- ReactiveFormCanPopCallback? canPop,
- 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,
});