NiceTutorial constructor

const NiceTutorial({
  1. Key? key,
  2. bool active = false,
  3. List<NiceTutorialStep> steps = const [],
  4. VoidCallback? onComplete,
  5. VoidCallback? onSkip,
  6. void onStepChange(
    1. int step
    )?,
  7. String? skipLabel,
  8. String? nextLabel,
  9. String? prevLabel,
  10. String? doneLabel,
  11. 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,
});