hexaSpin static method

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

Six dots in each vertice of a hexagon emerge one by one then shrink to disappear while rotating Required color is applied to all dots.

Implementation

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