dotsTriangle static method
Three dots in each vertice of an equilateral triangle expand towards side then moves to next vertice. Required color is applied to all dots.
Implementation
static Widget dotsTriangle({
required Color color,
required double size,
Key? key,
}) {
return DotsTriangle(
color: color,
size: size,
key: key,
);
}