hexagonDots static method

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

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