Updates the _timer of this Particle.
_timer
@override void update(double dt) { speed.addScaled(acceleration, dt); position ..addScaled(speed, dt) ..addScaled(acceleration, -dt * dt * 0.5); super.update(dt); }