CarouselScreen constructor

const CarouselScreen({
  1. Key? key,
  2. required List<String> images,
  3. required String index,
})

Implementation

const CarouselScreen({
  super.key,
  required this.images,
  required this.index,
});