backgroundAttachment property - CssStyleDeclaration class - dart:html library (original) (raw)
String getbackgroundAttachment
override
Gets the value of "background-attachment"
Implementation
String get backgroundAttachment => this._backgroundAttachment;
setbackgroundAttachment (String? value)
override
Sets the value of "background-attachment"
Implementation
set backgroundAttachment(String? value) {
_backgroundAttachment = value == null ? '' : value;
}