backgroundPosition property

String get backgroundPosition
override

Gets the value of "background-position"

Implementation

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

Sets the value of "background-position"

Implementation

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