GenericItemFormBuilder<T> constructor

const GenericItemFormBuilder<T>({
  1. Key? key,
  2. GenericItem<T>? model,
  3. Widget? child,
  4. bool canPop(
    1. FormGroup formGroup
    )?,
  5. void onPopInvoked(
    1. FormGroup formGroup,
    2. bool didPop
    )?,
  6. required Widget builder(
    1. BuildContext context,
    2. GenericItemForm<T> formModel,
    3. Widget? child
    ),
  7. void initState(
    1. BuildContext context,
    2. GenericItemForm<T> formModel
    )?,
})

Implementation

const GenericItemFormBuilder({
  Key? key,
  this.model,
  this.child,
  this.canPop,
  this.onPopInvoked,
  required this.builder,
  this.initState,
}) : super(key: key);