StepConfirm typedef

StepConfirm = Future<bool> Function(WizardSubStep step)

Callback fired before each step starts. Returns true to run the step, false to skip it. The default implementation runs every step.

Implementation

typedef StepConfirm = Future<bool> Function(WizardSubStep step);