PlanModeView constructor

const PlanModeView({
  1. Key? key,
  2. required Plan plan,
  3. PlanStepCallback? onExecuteNext,
  4. PlanStepCallback? onSkipStep,
  5. VoidCallback? onExitPlanMode,
  6. PlanStepReorderCallback? onReorderStep,
})

Implementation

const PlanModeView({
  super.key,
  required this.plan,
  this.onExecuteNext,
  this.onSkipStep,
  this.onExitPlanMode,
  this.onReorderStep,
});