CarouselSlideIndicator constructor

const CarouselSlideIndicator({
  1. Key? key,
  2. Color? color = Colors.white,
  3. required bool currentPage,
})

Implementation

const CarouselSlideIndicator({
  Key? key,
  this.color = Colors.white,
  required this.currentPage,
}) : super(key: key);