addOval method

void addOval (Rect oval)

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

Implementation

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