horizontalSpin static method

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

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);
}