WaveProgressPainter constructor

WaveProgressPainter(
  1. Animation<double>? _animation,
  2. Color backgroundWaveColor,
  3. Color foregroundWaveColor,
  4. double _progress,
)

Implementation

WaveProgressPainter(
  this._animation,
  this.backgroundWaveColor,
  this.foregroundWaveColor,
  this._progress,
) : super(repaint: _animation);