discreteCircle static method

Widget discreteCircle({
  1. required Color color,
  2. required double size,
  3. Color secondRingColor = Colors.teal,
  4. Color thirdRingColor = Colors.orange,
  5. Key? key,
})

Implementation

static Widget discreteCircle({
  required Color color,
  required double size,
  Color secondRingColor = Colors.teal,
  Color thirdRingColor = Colors.orange,
  Key? key,
}) {
  return DiscreteCircle(
    color: color,
    size: size,
    secondCircleColor: secondRingColor,
    thirdCircleColor: thirdRingColor,
    key: key,
  );
}