CustomDotIndicator constructor

const CustomDotIndicator({
  1. Key? key,
  2. required int currentIndex,
  3. required int totalDots,
  4. double activeSize = InsetsHelper.i10,
  5. double inactiveSize = InsetsHelper.i8,
})

Implementation

const CustomDotIndicator({
  super.key,
  required this.currentIndex,
  required this.totalDots,
  this.activeSize = InsetsHelper.i10,
  this.inactiveSize = InsetsHelper.i8,
});