Bubble constructor
Bubble({})
Creates a new bubble with the specified properties.
All parameters are required to ensure proper bubble initialization and physics calculations.
Implementation
Bubble({
required this.x,
required this.y,
required this.size,
required this.velocityX,
required this.velocityY,
});