PingPainter constructor

PingPainter({
  1. double startAngle = 0.0,
  2. double sweepAngle = 360.0,
  3. Color color = Colors.blue,
  4. double strokeWidth = 1,
})

默认是画圆

Implementation

PingPainter(
    {this.startAngle = 0.0,
    this.sweepAngle = 360.0,
    this.color = Colors.blue,
    this.strokeWidth = 1});