clipRRect property
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;
Implementation
set clipRRect(RRect? value) {
if (value != _clipRRect) {
_clipRRect = value;
markNeedsAddToScene();
}
}