VerticalStepper constructor

const VerticalStepper({
  1. required List<StepItem> steps,
  2. String? activeColor,
  3. String? inactiveColor,
  4. Key? key,
})

Implementation

const VerticalStepper({
  required this.steps,
  this.activeColor,
  this.inactiveColor,
  super.key,
});