CarouselCard constructor
const
CarouselCard({
- Key? key,
- String? title,
- required List<
CarouselItem> items, - void onItemTap(
- String url
Implementation
const CarouselCard({
super.key,
this.title,
required this.items,
this.onItemTap,
});