doubleArc static method

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

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