StepIndicatorState constructor

StepIndicatorState({
  1. required int maxSteps,
  2. int initialStep = 0,
  3. void onStepChanged(
    1. int
    )?,
})

Implementation

StepIndicatorState({
  required this.maxSteps,
  int initialStep = 0,
  this.onStepChanged,
}) : _currentStep = initialStep;