waveDots static method
Three dots go up and down give wave effect. Required color is applied to all dots.
Implementation
static Widget waveDots({
required Color color,
required double size,
Key? key,
}) {
return WaveDots(
color: color,
size: size,
key: key,
);
}