WaveBlob constructor

const WaveBlob({
  1. Key? key,
  2. required Widget child,
  3. double scale = 1.0,
  4. double speed = 8.6,
  5. double amplitude = 4250.0,
  6. int blobCount = 2,
  7. bool autoScale = true,
  8. bool overCircle = true,
  9. bool centerCircle = true,
  10. List<Color>? circleColors,
  11. List<Color>? colors,
})

Implementation

const WaveBlob({
    super.key,
    required this.child,
    this.scale = 1.0,
    this.speed = 8.6,
    this.amplitude = 4250.0,
    this.blobCount = 2,
    this.autoScale = true,
    this.overCircle = true,
    this.centerCircle = true,
    this.circleColors,
    this.colors,
});