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