PlatformStepper constructor

const PlatformStepper({
  1. Key? key,
  2. Key? widgetKey,
  3. required List<Step> steps,
  4. ScrollPhysics? physics,
  5. StepperType type = StepperType.vertical,
  6. int currentStep = 0,
  7. void onStepTapped(
    1. int
    )?,
  8. void onStepContinue()?,
  9. void onStepCancel()?,
  10. ControlsWidgetBuilder? controlsBuilder,
})

Implementation

const PlatformStepper(
    {Key? key,
    this.widgetKey,
    required this.steps,
    this.physics,
    this.type = StepperType.vertical,
    this.currentStep = 0,
    this.onStepTapped,
    this.onStepContinue,
    this.onStepCancel,
    this.controlsBuilder})
    : super(key: key);