clipRRect property

RRect clipRRect

The rounded-rect to clip in the parent's coordinate system.

The scene must be explicitly recomposited after this property is changed (as described at Layer).

Implementation

RRect get clipRRect => _clipRRect;
void clipRRect= (RRect value)

Implementation

set clipRRect(RRect value) {
  if (value != _clipRRect) {
    _clipRRect = value;
    markNeedsAddToScene();
  }
}