RehaculStepCounter constructor

const RehaculStepCounter(
  1. {Key? key,
  2. required int currentStep,
  3. int totalStep = 7}
)

Implementation

const RehaculStepCounter({
  super.key,
  required this.currentStep,
  this.totalStep = 7,
});