TouchInteractionHandler constructor

TouchInteractionHandler({
  1. required List<Particle> particles,
  2. required Offset? touchPoint,
  3. required double lineDistance,
  4. required Color touchColor,
  5. required Paint linePaint,
})

Constructor for the touch interaction handler

Implementation

TouchInteractionHandler({
  required this.particles,
  required this.touchPoint,
  required this.lineDistance,
  required this.touchColor,
  required this.linePaint,
});