stretchedDots static method
Five dots stretch up and shrink. Then again stretch down and shrink. Required color is applied to all dots.
Implementation
static Widget stretchedDots({
required Color color,
required double size,
Key? key,
}) {
return StretchedDots(
color: color,
size: size,
key: key,
);
}