pushClipRect method
Pushes a rectangular clip operation onto the operation stack.
Rasterization outside the given rectangle is discarded.
See pop for details about the operation stack.
Implementation
void pushClipRect(Rect rect) {
_pushClipRect(rect.left, rect.right, rect.top, rect.bottom);
}