Boid constructor
Boid({})
Implementation
Boid({
required this.x,
required this.y,
this.z = 0.5,
required this.vx,
required this.vy,
this.vz = 0,
this.size = 3.0,
this.color = Colors.white,
this.energy = 1.0,
});