NiceTutorial constructor
const
NiceTutorial({ - Key? key,
- bool active = false,
- List<NiceTutorialStep> steps = const [],
- VoidCallback? onComplete,
- VoidCallback? onSkip,
- void onStepChange(
- int step
)?,
- String? skipLabel,
- String? nextLabel,
- String? prevLabel,
- String? doneLabel,
- Widget? child,
})
Implementation
const NiceTutorial({
super.key,
this.active = false,
this.steps = const [],
this.onComplete,
this.onSkip,
this.onStepChange,
this.skipLabel,
this.nextLabel,
this.prevLabel,
this.doneLabel,
this.child,
});