NiceShowcase constructor

const NiceShowcase({
  1. Key? key,
  2. List<NiceShowcaseTab> tabs = const [],
  3. String? defaultTab,
  4. String? packageName,
  5. String? version,
  6. Widget? headerExtra,
  7. bool showAbout = true,
})

Implementation

const NiceShowcase({
  super.key,
  this.tabs = const [],
  this.defaultTab,
  this.packageName,
  this.version,
  this.headerExtra,
  this.showAbout = true,
});