FeatureShowcaseProps constructor

const FeatureShowcaseProps({
  1. required String title,
  2. String? subtitle,
  3. required List<FeatureShowcaseItem> items,
  4. double expandedFlex = 2.5,
  5. double collapsedFlex = 1.0,
  6. String gap = '1.5rem',
  7. String minCardWidth = '280px',
  8. bool expandOnHover = true,
  9. String? background,
  10. bool centerHeader = true,
})

Implementation

const FeatureShowcaseProps({
  required this.title,
  this.subtitle,
  required this.items,
  this.expandedFlex = 2.5,
  this.collapsedFlex = 1.0,
  this.gap = '1.5rem',
  this.minCardWidth = '280px',
  this.expandOnHover = true,
  this.background,
  this.centerHeader = true,
});