makeDroppedBall method
void
makeDroppedBall()
Make object bounce and gradually lose energy (like a dropped ball)
Implementation
void makeDroppedBall() {
setupElasticCollision(
enabled: true,
bounciness: 0.6,
minBounceVelocity: 12.0,
);
}