ProgressStepLayout constructor

const ProgressStepLayout({
  1. Key? key,
  2. required List<Widget> children,
  3. required double progress,
  4. double? maxWidth = 600,
  5. double? progressBarHeight = 10,
  6. double? topPadding = 60,
  7. void onBack()?,
  8. Color? backgroundColor,
})

Implementation

const ProgressStepLayout(
    {super.key,
    required this.children,
    required this.progress,
    this.maxWidth = 600,
    this.progressBarHeight = 10,
    this.topPadding = 60,
    this.onBack,
    this.backgroundColor});