triangularDot static method
Three dots at each vertice of an equilateral triangle moves to the center while rotating and then again go back to origianl position. Required color is applied to all dots.
Implementation
static Widget triangularDot({
required Color color,
required double size,
Key? key,
}) {
return TriangularDot(color: color, size: size, key: key);
}