StepperWidget constructor

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

Implementation

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