clipBehavior property
Controls how to clip.
Must not be set to null or Clip.none.
Defaults to Clip.antiAlias.
Implementation
Clip get clipBehavior => _clipBehavior;
Implementation
set clipBehavior(Clip value) {
assert(value != Clip.none);
if (value != _clipBehavior) {
_clipBehavior = value;
markNeedsAddToScene();
}
}