StepperPageWidget constructor

const StepperPageWidget({
  1. Key? key,
  2. dynamic onNext()?,
  3. dynamic onPrevious()?,
  4. dynamic onLast()?,
  5. required List<StepWidget> steps,
  6. StepperDirection? direction,
  7. required String nextLabel,
  8. required String lastLabel,
  9. required String previousLabel,
  10. required Scaffold builder(
    1. Widget body,
    2. Widget bottomNavigationBar
    ),
})

Implementation

const StepperPageWidget(
    {Key? key,
    this.onNext,
    this.onPrevious,
    this.onLast,
    required this.steps,
    this.direction,
    required this.nextLabel,
    required this.lastLabel,
    required this.previousLabel,
    required this.builder})
    : super(key: key);