splashDrop static method
A dot falls down then completes a circle then become to dot again. Required color is applied to the ring and the dot.
Implementation
static Widget splashDrop({
required Color color,
required double size,
Key? key,
}) {
return SplashDrop(color: color, size: size, key: key);
}