twoRotatingArc static method
Two arc place at 180 degree apart from each other. While rotating shrink to dot. Required color is applied to both arc.
Implementation
static Widget twoRotatingArc({
required Color color,
required double size,
Key? key,
}) {
return TwoRotatingArc(
color: color,
size: size,
key: key,
);
}