WavePainter constructor

const WavePainter({
  1. required double progress,
  2. required double waveHeight,
  3. required double animationValue,
  4. required List<Color> gradientColors,
  5. LinearGradient? gradient,
})

Implementation

const WavePainter({
  required this.progress,
  required this.waveHeight,
  required this.animationValue,
  required this.gradientColors,
  this.gradient,
});