drawCircle method

void drawCircle(
  1. Offset center,
  2. double radius,
  3. RenderPaint paint
)

Implementation

void drawCircle(flutter.Offset center, double radius, RenderPaint paint) {
  drawPath(
    riveFactory.makePath()
      ..addOval(
        flutter.Rect.fromCircle(
          center: center,
          radius: radius,
        ),
      ),
    paint,
  );
}