clipRSuperellipse 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
RSuperellipse? get clipRSuperellipse => _clipRSuperellipse;
Implementation
set clipRSuperellipse(RSuperellipse? value) {
if (value != _clipRSuperellipse) {
_clipRSuperellipse = value;
markNeedsAddToScene();
}
}