BitStepper constructor

const BitStepper({
  1. Key? key,
  2. required int step,
  3. required List<Widget> stepContents,
  4. required List<Widget> stepIcons,
  5. required List<String> stepTitles,
  6. List<EdgeInsets>? titlePaddings,
  7. List<Color>? titleColors,
  8. List<Color>? iconColors,
  9. List<bool>? iconBorders,
  10. List<double>? borderWidths,
  11. List<double>? borderRadii,
  12. List<EdgeInsets>? borderPaddings,
  13. required VoidCallback onNextStep,
})

Implementation

const BitStepper({
  Key? key,
  required this.step,
  required this.stepContents,
  required this.stepIcons,
  required this.stepTitles,
  this.titlePaddings,
  this.titleColors,
  this.iconColors,
  this.iconBorders,
  this.borderWidths,
  this.borderRadii,
  this.borderPaddings,
  required this.onNextStep,
}) : super(key: key);