backgroundAttachment property

CSSBackgroundAttachmentType? backgroundAttachment

Background-attachment

Implementation

CSSBackgroundAttachmentType? get backgroundAttachment => _backgroundAttachment;
void backgroundAttachment=(CSSBackgroundAttachmentType? value)

Implementation

set backgroundAttachment(CSSBackgroundAttachmentType? value) {
  if (value == _backgroundAttachment) return;
  _backgroundAttachment = value;
  renderBoxModel?.markNeedsPaint();
}