Updates the _timer of this Particle.
_timer
@override void update(double dt) { super.update(dt); children.removeWhere((particle) => particle.shouldRemove); for (final child in children) { child.update(dt); } }