DotIndicator constructor

DotIndicator({
  1. PaintingStyle paintingStyle = PaintingStyle.fill,
  2. double radius = 3,
  3. Color color = Colors.blue,
  4. double distanceFromCenter = 8,
  5. double strokeWidth = 2,
})

Implementation

DotIndicator({
  this.paintingStyle = PaintingStyle.fill,
  this.radius = 3,
  this.color = Colors.blue,
  this.distanceFromCenter = 8,
  this.strokeWidth = 2,
});