Stepper constructor

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

Implementation

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