CarouselCard constructor

const CarouselCard({
  1. Key? key,
  2. String? title,
  3. String? text,
  4. required List<CarouselItem> items,
  5. void onItemTap(
    1. String url
    )?,
})

Implementation

const CarouselCard({
  super.key,
  this.title,
  this.text,
  required this.items,
  this.onItemTap,
});