TStepper constructor

const TStepper({
  1. Key? key,
  2. required int currentStep,
  3. required int totalSteps,
  4. Color? activeColor,
  5. Color? inactiveColor,
})

Implementation

const TStepper({
  super.key,
  required this.currentStep,
  required this.totalSteps,
  this.activeColor,
  this.inactiveColor,
});