clip property
bool
get
clip
True when the artboard bounds clip its contents.
Implementation
bool get clip => _clip;
set
clip
(bool value)
Change the _clip field value.
clipChanged will be invoked only if the field's value has changed.
Implementation
set clip(bool value) {
if (_clip == value) {
return;
}
bool from = _clip;
_clip = value;
if (hasValidated) {
clipChanged(from, value);
}
}