BsCarouselCaption constructor

const BsCarouselCaption({
  1. Key? key,
  2. Widget? title,
  3. Widget? description,
  4. Color? color,
  5. AlignmentGeometry alignment = Alignment.bottomCenter,
})

Creates a BsCarouselCaption.

Implementation

const BsCarouselCaption({
  super.key,
  this.title,
  this.description,
  this.color,
  this.alignment = Alignment.bottomCenter,
});