ReactiveGenericItemForm<T> constructor

const ReactiveGenericItemForm<T>({
  1. Key? key,
  2. required GenericItemForm<T> form,
  3. required Widget child,
  4. bool canPop(
    1. FormGroup formGroup
    )?,
  5. void onPopInvoked(
    1. FormGroup formGroup,
    2. bool didPop
    )?,
})

Implementation

const ReactiveGenericItemForm({
  Key? key,
  required this.form,
  required this.child,
  this.canPop,
  this.onPopInvoked,
}) : super(key: key);