W3cubDocs

/Dart 2

backgroundColor property

String backgroundColor
override

Gets the value of "background-color"

Implementation

String get backgroundColor => this._backgroundColor;
void backgroundColor= (String value)
override

Sets the value of "background-color"

Implementation

set backgroundColor(String value) {
  _backgroundColor = value == null ? '' : value;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-html/CssStyleDeclaration/backgroundColor.html