backgroundClip property
BackgroundBoundary?
get
backgroundClip
Background-clip
Implementation
BackgroundBoundary? get backgroundClip => _backgroundClip;
set
backgroundClip
(BackgroundBoundary? value)
Implementation
set backgroundClip(BackgroundBoundary? value) {
if (value == _backgroundClip) return;
_backgroundClip = value;
renderBoxModel?.markNeedsPaint();
}