quadSpin static method

Widget quadSpin({
  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 quadSpin({
  required Color color,
  required double size,
  Key? key,
}) {
  return QuadSpin(color: color, size: size, key: key);
}