StepTitle constructor

const StepTitle({
  1. Key? key,
  2. required String title,
  3. required int stepIndex,
  4. required Color textColor,
})

Implementation

const StepTitle({
  super.key,
  required this.title,
  required this.stepIndex,
  required this.textColor,
});