CircleParticle constructor

const CircleParticle({
  1. required Animation<double> animation,
  2. required Color color,
  3. int lineCount = 8,
  4. double size = 50,
  5. double? lineLength,
  6. Key? key,
})

Implementation

const CircleParticle({
  required this.animation,
  required this.color,
  this.lineCount = 8,
  this.size = 50,
  this.lineLength,
  super.key,
});