WaveProgressPainter constructor

WaveProgressPainter(
  1. Animation<double> _animation,
  2. double _progress, {
  3. String label = '',
  4. String subLabel = '',
  5. Color borderColor = Colors.blueAccent,
  6. Color fillColor = Colors.blueAccent,
})

Implementation

WaveProgressPainter(
  this._animation,
  this._progress, {
  this.label = '',
  this.subLabel = '',
  this.borderColor = Colors.blueAccent,
  this.fillColor = Colors.blueAccent,
}) : super(repaint: _animation);