clip property

bool get clip

Whether painting is clipped to the stack bounds.

Implementation

bool get clip => _clip;
set clip (bool value)

Implementation

set clip(bool value) {
  if (_clip == value) return;
  _clip = value;
  markNeedsPaint();
}