paintInactiveIndicators method
dynamic
paintInactiveIndicators()
override
Implementation
@override
paintInactiveIndicators(Canvas canvas, Size size, Paint paint, Path path) {
Offset offset = Offset.zero;
for (int i = 0; i <= pagesLength - 1; i++) {
canvas.drawCircle(offset, radius, paint);
offset = Offset(offset.dx + radius + space, 0.0);
}
}