DotIndicator<T> constructor

DotIndicator<T>({
  1. required PageController pageController,
  2. required List<T> pages,
  3. Color? indicatorColor,
  4. Color? unselectedIndicatorColor,
  5. Function? onDotTap,
  6. dynamic onPageChanged(
    1. int
    )?,
  7. double? currentDotSize,
  8. double? currentDotWidth,
  9. double? dotSize,
  10. BoxShape? currentBoxShape,
  11. BoxShape? boxShape,
  12. BorderRadiusGeometry? borderRadius,
  13. BorderRadiusGeometry? currentBorderRadius,
  14. Key? key,
})

Implementation

DotIndicator({
  required this.pageController,
  required this.pages,
  this.indicatorColor,
  this.unselectedIndicatorColor,
  this.onDotTap,
  this.onPageChanged,
  this.currentDotSize,
  this.currentDotWidth,
  this.dotSize,
  this.currentBoxShape,
  this.boxShape,
  this.borderRadius,
  this.currentBorderRadius,
  super.key,
});