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