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

description

String getbackgroundPosition

override

Gets the value of "background-position"

Implementation

String get backgroundPosition => this._backgroundPosition;

setbackgroundPosition (String? value)

override

Sets the value of "background-position"

Implementation

set backgroundPosition(String? value) {
  _backgroundPosition = value == null ? '' : value;
}