CarouselItem constructor

CarouselItem({
  1. required Image image,
  2. String? label,
  3. VoidCallback? onTap,
})

Implementation

CarouselItem({
  required this.image,
  this.label,
  this.onTap,
});