PathStepper constructor

const PathStepper({
  1. Key? key,
  2. required List<LearningPathStep> steps,
  3. required int currentPosition,
  4. bool compact = false,
})

Implementation

const PathStepper({
  super.key,
  required this.steps,
  required this.currentPosition,
  this.compact = false,
});