Particles constructor
const
Particles({
- Key? key,
- required List<
Particle> particles, - required double height,
- required double width,
- bool connectDots = false,
- Emitter? particleEmitter,
- ParticlePhysics? particlePhysics,
- BoundType boundType = BoundType.None,
- ParticleInteraction? interaction,
Creates a widget that handles per-frame animation of particles.
Implementation
const Particles({
Key? key,
required this.particles,
required this.height,
required this.width,
this.connectDots = false,
this.particleEmitter,
this.particlePhysics,
this.boundType = BoundType.None,
this.interaction,
}) : super(key: key);