circle property
Circular particle shape.
Implementation
static final ParticlePathPreset circle = ParticlePathPreset(
path: Path()
..addOval(
Rect.fromCircle(
center: Offset.zero,
radius: 1.0,
),
),
areaFactor: 1.0,
);