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