HeroCarousel constructor

const HeroCarousel({
  1. Key? key,
  2. required List<Component> children,
  3. int autoPlayInterval = 5000,
  4. bool showArrows = true,
  5. bool showIndicators = true,
  6. String height = '400px',
})

Implementation

const HeroCarousel({
  super.key,
  required this.children,
  this.autoPlayInterval = 5000,
  this.showArrows = true,
  this.showIndicators = true,
  this.height = '400px',
});