MasteryProgressStepper constructor

const MasteryProgressStepper({
  1. Key? key,
  2. required String currentMastery,
  3. bool showNextStep = true,
})

Implementation

const MasteryProgressStepper({
  super.key,
  required this.currentMastery,
  this.showNextStep = true,
});