horizontalRotatingDots static method

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

Three dots rotates in a horizontal plane. Required color is applied to all three dots.

Implementation

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