fourRotatingDots static method

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

Four dots shrink to the center and expand and rotates 315 degree. Required color is applied to four dots.

Implementation

static Widget fourRotatingDots({
  required Color color,
  required double size,
  Key? key,
}) {
  return FourRotatingDots(
    color: color,
    size: size,
    key: key,
  );
}