drawCircle abstract method
Draws a circle centered at the point given by the first argument and that has the radius given by the second argument, with the Paint given in the third argument. Whether the circle is filled or stroked (or both) is controlled by Paint.style.
Implementation
void drawCircle(Offset c, double radius, Paint paint);