hexagonDots static method
Six dots in each vertice of a gon emerge one by one then shrink to disappear while rotating Required color is applied to all dots.
Implementation
static Widget hexagonDots({
required Color color,
required double size,
Key? key,
}) {
return HexagonDots(
color: color,
size: size,
key: key,
);
}