backgroundImage property

String backgroundImage

Gets the value of "background-image"

Implementation

String get backgroundImage => this._backgroundImage;
void backgroundImage= (String value)

Sets the value of "background-image"

Implementation

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