splashDrop static method

Widget splashDrop({
  1. required Color color,
  2. required double size,
  3. Key? key,
})

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);
}