CoolStepperCustomConfig constructor

const CoolStepperCustomConfig({
  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,
  14. TextStyle? backTextStyle,
  15. ButtonStyle? backButtonStyle,
  16. EdgeInsetsGeometry? backButtonPadding,
  17. TextStyle? nextTextStyle,
  18. ButtonStyle? nextButtonStyle,
  19. EdgeInsetsGeometry? nextButtonPadding,
  20. TextStyle? finalTextStyle,
  21. ButtonStyle? finalButtonStyle,
  22. EdgeInsetsGeometry? finalButtonPadding,
})

Implementation

const CoolStepperCustomConfig({
  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,
  this.backTextStyle,
  this.backButtonStyle,
  this.backButtonPadding,
  this.nextTextStyle,
  this.nextButtonStyle,
  this.nextButtonPadding,
  this.finalTextStyle,
  this.finalButtonStyle,
  this.finalButtonPadding,
});