TStepper constructor

const TStepper({
  1. Key? key,
  2. required List<TStep> steps,
  3. int currentStep = 0,
  4. ValueChanged<int>? onStepTapped,
  5. TStepperType type = TStepperType.vertical,
  6. Color? color,
  7. EdgeInsetsGeometry? contentPadding,
})

Implementation

const TStepper({
  super.key,
  required this.steps,
  this.currentStep = 0,
  this.onStepTapped,
  this.type = TStepperType.vertical,
  this.color,
  this.contentPadding,
});