BasicIndicatorPainter constructor

BasicIndicatorPainter(
  1. double offset,
  2. int count,
  3. BasicIndicatorEffect _effect
)

Default constructor

Implementation

BasicIndicatorPainter(
  double offset,
  this.count,
  this._effect,
)   : dotRadius = Radius.circular(_effect.radius),
      dotPaint = Paint()
        ..color = _effect.dotColor
        ..style = _effect.paintStyle
        ..strokeWidth = _effect.strokeWidth,
      super(offset);