CarrouselImageComponent constructor

const CarrouselImageComponent({
  1. required List imageUrls,
  2. Color dotColor = Colors.white,
  3. double? heigthImage,
  4. double? heigthBox,
  5. IndicatorType type = IndicatorType.dots,
  6. PageController? pageController,
  7. dynamic onPageChanged(
    1. int
    )?,
  8. Widget? emptyListWidget,
  9. double? radiusImage,
  10. required dynamic onPageLongClick(
    1. int
    ),
  11. Key? key,
})

Implementation

const CarrouselImageComponent({
  required this.imageUrls,
  this.dotColor = Colors.white,
  this.heigthImage,
  this.heigthBox,
  this.type = IndicatorType.dots,
  this.pageController,
  this.onPageChanged,
  this.emptyListWidget,
  this.radiusImage,
  required this.onPageLongClick,
  Key? key,
}) : super(key: key);