ReservationStateFormBuilder constructor

const ReservationStateFormBuilder({
  1. Key? key,
  2. ReservationState? 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. ReservationStateForm formModel,
    3. Widget? child
    ),
  7. void initState(
    1. BuildContext context,
    2. ReservationStateForm formModel
    )?,
})

Implementation

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