SeniorSliderDots constructor

const SeniorSliderDots({
  1. Key? key,
  2. required int currentPage,
  3. required int length,
  4. SeniorSliderDotsStyle? style,
})

Creates the SliderDots component of the design system. The currentPage and length parameters are required.

Implementation

const SeniorSliderDots({
  Key? key,
  required this.currentPage,
  required this.length,
  this.style,
}) : super(key: key);