threeArchedCircle static method

Widget threeArchedCircle({
  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 threeArchedCircle({
  required Color color,
  required double size,
  Key? key,
}) {
  return ThreeArchedCircle(
    color: color,
    size: size,
    key: key,
  );
}