CarouselContainer constructor

const CarouselContainer({
  1. Key? key,
  2. required Widget carousel(
    1. double viewportFraction
    ),
  3. double? aspectRatio,
  4. double? height,
  5. EdgeInsets? padding,
})

Implementation

const CarouselContainer({
  Key? key,
  required this.carousel,
  this.aspectRatio,
  this.height,
  this.padding,
}) : super(key: key);