NsfwScanWizardStepHeader constructor

const NsfwScanWizardStepHeader({
  1. Key? key,
  2. required List<String> stepLabels,
  3. required int currentStep,
  4. NsfwStepIsDone? isStepDone,
  5. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
  6. double spacing = 8,
  7. Color? activeColor,
  8. Color? completedColor,
  9. Color? idleColor,
  10. Color? idleTextColor,
  11. Color? activeTextColor,
  12. Color? chipBorderColor,
})

Implementation

const NsfwScanWizardStepHeader({
  super.key,
  required this.stepLabels,
  required this.currentStep,
  this.isStepDone,
  this.padding = const EdgeInsets.symmetric(horizontal: 12, vertical: 10),
  this.spacing = 8,
  this.activeColor,
  this.completedColor,
  this.idleColor,
  this.idleTextColor,
  this.activeTextColor,
  this.chipBorderColor,
});