MagicalFlowerAnimator constructor

MagicalFlowerAnimator({
  1. int petalCount = 5,
  2. double petalWidth = 50.0,
  3. double petalLength = 70.0,
  4. double flowerScale = 1.5,
  5. double centerScale = 0.3,
  6. double petalCurve = 0.4,
  7. double petalOverlap = 0.2,
  8. double rotationSpeed = 0.1,
  9. bool enableGlowEffect = true,
  10. bool enableSparkles = true,
  11. bool enablePatternDetail = true,
  12. bool enablePetalGradient = true,
  13. int sparkleCount = 12,
  14. bool enableHueTilt = true,
  15. double hueTiltRange = 0.15,
  16. double saturationBoost = 1.2,
  17. Color centerColor = const Color(0xFF55BBAA),
  18. Color accentColor = const Color(0xFFFFFFFF),
})

Implementation

MagicalFlowerAnimator({
  this.petalCount = 5,
  this.petalWidth = 50.0,
  this.petalLength = 70.0,
  this.flowerScale = 1.5,
  this.centerScale = 0.3,
  this.petalCurve = 0.4,
  this.petalOverlap = 0.2,
  this.rotationSpeed = 0.1,
  //
  this.enableGlowEffect = true,
  this.enableSparkles = true,
  this.enablePatternDetail = true,
  this.enablePetalGradient = true,
  this.sparkleCount = 12,
  //
  this.enableHueTilt = true,
  this.hueTiltRange = 0.15,
  this.saturationBoost = 1.2,
  this.centerColor = const Color(0xFF55BBAA),
  this.accentColor = const Color(0xFFFFFFFF),
});