void addOval(Rect oval)

Adds a new subpath that consists of a curve that forms the ellipse that fills the given rectangle.

Source

void addOval(Rect oval) {
  _addOval(oval.left, oval.top, oval.right, oval.bottom);
}