background property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getbackground

override

Gets the value of "background"

Implementation

String get background => this._background;

setbackground (String? value)

override

Sets the value of "background"

Implementation

set background(String? value) {
  _background = value == null ? '' : value;
}