backgroundAttachment property

  1. @override
CSSBackgroundAttachmentType? backgroundAttachment
override

Background-attachment

Implementation

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

Implementation

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