clipBehavior property

Clip clipBehavior

Controls how to clip (default to Clip.antiAlias).

Clip.none is not allowed here.

Implementation

Clip get clipBehavior => _clipBehavior;
void clipBehavior= (Clip value)

Implementation

set clipBehavior(Clip value) {
  assert(value != null);
  assert(value != Clip.none);
  if (value != _clipBehavior) {
    _clipBehavior = value;
    markNeedsAddToScene();
  }
}