KinStepper constructor

const KinStepper({
  1. Key? key,
  2. required List<KinStep> steps,
  3. required int currentStep,
  4. KinStepperOrientation orientation = KinStepperOrientation.horizontal,
  5. KinStepperVariant variant = KinStepperVariant.numbered,
  6. ValueChanged<int>? onStepTapped,
  7. bool enableTap = true,
})

Implementation

const KinStepper({
  super.key,
  required this.steps,
  required this.currentStep,
  this.orientation = KinStepperOrientation.horizontal,
  this.variant = KinStepperVariant.numbered,
  this.onStepTapped,
  this.enableTap = true,
});