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