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