backgroundRepeat property - CssStyleDeclaration class - dart:html library (original) (raw)
String getbackgroundRepeat
override
Gets the value of "background-repeat"
Implementation
String get backgroundRepeat => this._backgroundRepeat;
setbackgroundRepeat (String? value)
override
Sets the value of "background-repeat"
Implementation
set backgroundRepeat(String? value) {
_backgroundRepeat = value == null ? '' : value;
}