LineParticlePainter constructor

LineParticlePainter({
  1. required Animation<double> animation,
  2. required double lineLength,
  3. required Color color,
})

Implementation

LineParticlePainter({
  required this.animation,
  required this.lineLength,
  required this.color,
}) : super(repaint: animation);