StepperProps constructor

const StepperProps({
  1. required List<StepItemData> items,
  2. StepsLayout layout = StepsLayout.horizontal,
  3. ComponentSize size = ComponentSize.md,
  4. bool showConnectors = true,
  5. int? currentStep,
  6. void onStepTap(
    1. int index
    )?,
})

Implementation

const StepperProps({
  required this.items,
  this.layout = StepsLayout.horizontal,
  this.size = ComponentSize.md,
  this.showConnectors = true,
  this.currentStep,
  this.onStepTap,
});