clip property

bool clip
inherited

True when the layout component bounds clip its contents.

Implementation

bool get clip => _clip;
void clip=(bool value)
inherited

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);
  }
}