CoolStepperConfig constructor

const CoolStepperConfig({
  1. String? backText = 'PRE',
  2. String? nextText = 'NEXT',
  3. String? stepText = 'STEP',
  4. String? ofText = 'OF',
  5. Color? headerColor,
  6. Color? iconColor,
  7. Icon? icon,
  8. TextStyle? titleTextStyle,
  9. TextStyle? subtitleTextStyle,
  10. List<String>? backTextList,
  11. List<String>? nextTextList,
  12. String? finalText = 'FINISH',
  13. bool isHeaderEnabled = true,
})

Implementation

const CoolStepperConfig({
  this.backText = 'PRE',
  this.nextText = 'NEXT',
  this.stepText = 'STEP',
  this.ofText = 'OF',
  this.headerColor,
  this.iconColor,
  this.icon,
  this.titleTextStyle,
  this.subtitleTextStyle,
  this.backTextList,
  this.nextTextList,
  this.finalText = 'FINISH',
  this.isHeaderEnabled = true,
});