CarouselItem constructor

CarouselItem({
  1. String? title,
  2. TextStyle? titleTextStyle,
  3. String? leftSubtitle,
  4. TextStyle? leftSubtitleTextStyle,
  5. String? rightSubtitle,
  6. TextStyle? rightSubtitleTextStyle,
  7. void onImageTap(
    1. int
    )?,
  8. BoxDecoration? boxDecoration,
  9. dynamic image,
})

Implementation

CarouselItem({
  this.title,
  this.titleTextStyle,
  this.leftSubtitle,
  this.leftSubtitleTextStyle,
  this.rightSubtitle,
  this.rightSubtitleTextStyle,
  this.onImageTap,
  this.boxDecoration,
  this.image,
});