backgroundRepeat property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getbackgroundRepeat
Gets the value of "background-repeat"
Implementation
String get backgroundRepeat => getPropertyValue('background-repeat');
setbackgroundRepeat (String value)
Sets the value of "background-repeat"
Implementation
set backgroundRepeat(String value) {
setProperty('background-repeat', value, '');
}