Creates a rectangle representing a circle with centerpoint x,yand radiusr`.
x,
and radius
const Rect.fromCircle(double x, double y, double r) : this.fromLTRB(x - r, y - r, x + r, y + r);