FullScreenCarousel constructor

const FullScreenCarousel({
  1. Key? key,
  2. CarouselController? controller,
  3. bool withSafeAreaPadding = false,
  4. required List<Widget> items,
  5. dynamic onManualPageChange(
    1. int
    )?,
  6. bool loop = false,
})

Implementation

const FullScreenCarousel({
  Key? key,
  this.controller,
  this.withSafeAreaPadding = false,
  required this.items,
  this.onManualPageChange,
  this.loop = false,
}) : super(key: key);