twoRotatingArc static method

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

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