StepProgressAppBar constructor

const StepProgressAppBar({
  1. Key? key,
  2. required int totalSteps,
  3. required int currentStep,
  4. required String progressText,
})

Implementation

const StepProgressAppBar({
  super.key,
  required this.totalSteps,
  required this.currentStep,
  required this.progressText,
});