doubleArc static method
Three arc at 60 degree shrinks to a dot while rotating and comes back to inital. Required color is applied to all three arc.
Implementation
static Widget doubleArc({
required Color color,
required double size,
Key? key,
}) {
return DoubleArc(color: color, size: size, key: key);
}