backgroundPosition property

String backgroundPosition
override

Gets the value of "background-position"

Implementation

String get backgroundPosition => this._backgroundPosition;
void backgroundPosition= (String value)
override

Sets the value of "background-position"

Implementation

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