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

description

String getbackgroundImage

override

Gets the value of "background-image"

Implementation

String get backgroundImage => this._backgroundImage;

setbackgroundImage (String? value)

override

Sets the value of "background-image"

Implementation

set backgroundImage(String? value) {
  _backgroundImage = value == null ? '' : value;
}