CirclePainter constructor
CirclePainter({})
Implementation
CirclePainter({
required double netDragPercent,
required int pagesLength,
required int currentPageIndex,
required final SlideDirection slideDirection,
final Paint? activePainter,
final Paint? inactivePainter,
final bool? showAllActiveIndicators,
this.space = 10.0,
this.radius = 5.0,
this.translate = false,
}) : super(
netDragPercent: netDragPercent,
pagesLength: pagesLength,
activePainter: activePainter,
inactivePainter: inactivePainter,
currentPageIndex: currentPageIndex,
showAllActiveIndicators: showAllActiveIndicators,
slideDirection: slideDirection,
);