StepBuilder constructor

const StepBuilder({
  1. required Widget child,
  2. StepLayout layout = StepLayout.stack,
  3. Alignment childAlignment = Alignment.topCenter,
  4. EdgeInsets? controlsPadding,
  5. bool shouldStepForward()?,
  6. Key? key,
})

StepBuilder

Implementation

const StepBuilder({
  required this.child,
  this.layout = StepLayout.stack,
  this.childAlignment = Alignment.topCenter,
  this.controlsPadding,
  this.shouldStepForward,
  super.key,
});