CuReStepper constructor

const CuReStepper({
  1. Key? key,
  2. required int totalSteps,
  3. required int currentStep,
  4. dynamic onStepChange(
    1. int
    )?,
  5. bool? hideNumbers,
  6. bool? hideSeparators,
  7. int? separatorSize,
  8. CuReShape? shape,
  9. bool? disabled,
  10. Color? color,
  11. bool? readonly,
  12. bool? vertical,
})

Implementation

const CuReStepper({
  super.key,
  required this.totalSteps,
  required this.currentStep,
  this.onStepChange,
  this.hideNumbers,
  this.hideSeparators,
  this.separatorSize,
  this.shape,
  this.disabled,
  this.color,
  this.readonly,
  this.vertical,
});