FeatureShowcaseItem constructor

const FeatureShowcaseItem({
  1. required Component icon,
  2. required String title,
  3. required String description,
  4. Component? header,
  5. Component? footer,
  6. void onTap()?,
  7. String? href,
})

Implementation

const FeatureShowcaseItem({
  required this.icon,
  required this.title,
  required this.description,
  this.header,
  this.footer,
  this.onTap,
  this.href,
});