MultiLayerWaterWavePainter constructor

MultiLayerWaterWavePainter({
  1. required double waveAnimationValue,
  2. required double progress,
  3. required double waveHeight,
  4. required List<Color> colorsWave,
  5. required Color backgroundColor,
  6. BoxShape shape = BoxShape.circle,
  7. required bool completedIsShowWave,
})

Implementation

MultiLayerWaterWavePainter(
    {required this.waveAnimationValue,
    required this.progress,
    required this.waveHeight,
    required this.colorsWave,
    required this.backgroundColor,
    this.shape = BoxShape.circle, // 默认为圆形,
    required this.completedIsShowWave});