horizontalSpin static method
Three dots in each vertice of an equilateral triangle expand towards side then moves to next vertice. Required color is applied to all dots.
Implementation
static Widget horizontalSpin({
required Color color,
required double size,
Key? key,
}) {
return HorizontalSpin(color: color, size: size, key: key);
}