FireworksController constructor
FireworksController({})
Implementation
FireworksController({
List<Color>? colors,
this.rocketColor,
this.minExplosionDuration = 1.0,
this.maxExplosionDuration = 3.0,
this.minParticleCount = 100,
this.maxParticleCount = 250,
this.fadeOutDuration = 0.3,
}) : colors = colors ??
[
Colors.pinkAccent,
Colors.blueAccent,
Colors.greenAccent,
Colors.amberAccent,
];