BitStepper constructor
const
BitStepper({
- Key? key,
- required int step,
- required List<
Widget> stepContents, - required List<
Widget> stepIcons, - required List<
String> stepTitles, - List<
EdgeInsets> ? titlePaddings, - List<
Color> ? titleColors, - List<
Color> ? iconColors, - List<
bool> ? iconBorders, - List<
double> ? borderWidths, - List<
double> ? borderRadii, - List<
EdgeInsets> ? borderPaddings, - 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);