BsCarouselItem constructor

const BsCarouselItem({
  1. Key? key,
  2. required Widget child,
  3. Duration? interval,
  4. BsCarouselCaption? caption,
})

Creates a BsCarouselItem.

Implementation

const BsCarouselItem({
  super.key,
  required this.child,
  this.interval,
  this.caption,
});