gravityDrop static method
A ball fall from top and bounce back Required color is applied to the ball.
Implementation
static Widget gravityDrop({
required Color color,
required double size,
Key? key,
}) {
return GravityDrop(color: color, size: size, key: key);
}