MoonCarousel constructor

const MoonCarousel({
  1. Key? key,
  2. required List<Widget> items,
  3. double height = 200,
  4. Duration autoPlayInterval = const Duration(seconds: 4),
})

Implementation

const MoonCarousel({
  super.key,
  required this.items,
  this.height = 200,
  this.autoPlayInterval = const Duration(seconds: 4),
});