CustomCarousel constructor

const CustomCarousel({
  1. Key? key,
  2. required List<String> images,
  3. double height = 215,
})

Implementation

const CustomCarousel({
  super.key,
  required this.images,
  this.height = 215,
});