Showcase constructor

const Showcase({
  1. Key? key,
  2. Widget? app,
  3. String? title,
  4. TemplateThemeData? theme,
  5. String? description,
  6. List<LinkData>? links,
  7. Template? template,
  8. LinkData? logoLink,
})

Implementation

const Showcase({
  Key? key,
  this.app,
  this.title,
  this.theme,
  this.description,
  this.links,
  this.template,
  this.logoLink,
}) : super(key: key);