NiceOnboardingWizard constructor

const NiceOnboardingWizard({
  1. Key? key,
  2. required List<NiceOnboardingPage> pages,
  3. void onComplete()?,
  4. void onSkip()?,
  5. bool showSkip = true,
  6. String? skipLabel,
  7. String? nextLabel,
  8. String? finishLabel,
})

Implementation

const NiceOnboardingWizard({
  super.key,
  required this.pages,
  this.onComplete,
  this.onSkip,
  this.showSkip = true,
  this.skipLabel,
  this.nextLabel,
  this.finishLabel,
});