PageStepper constructor

const PageStepper({
  1. Key? key,
  2. String? title,
  3. TextStyle? titleStyle,
  4. Widget? header,
  5. required List<StepPage> steps,
  6. bool loading = false,
  7. Widget? loadingWidget,
  8. double? maxWidth,
  9. double? progressBarHeight,
  10. String? localeName,
  11. Color? backgroundColor,
  12. double? topPadding,
})

Implementation

const PageStepper(
    {super.key,
    this.title,
    this.titleStyle,
    this.header,
    required this.steps,
    this.loading = false,
    this.loadingWidget,
    this.maxWidth,
    this.progressBarHeight,
    this.localeName,
    this.backgroundColor,
    this.topPadding});