quadSpin static method
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);
}