backgroundClip property

BackgroundBoundary? backgroundClip

Background-clip

Implementation

BackgroundBoundary? get backgroundClip => _backgroundClip;
void backgroundClip=(BackgroundBoundary? value)

Implementation

set backgroundClip(BackgroundBoundary? value) {
  if (value == _backgroundClip) return;
  _backgroundClip = value;
  renderBoxModel?.markNeedsPaint();
}