backgroundPosition property
Gets the value of "background-position"
Implementation
String get backgroundPosition => this._backgroundPosition;
Sets the value of "background-position"
Implementation
set backgroundPosition(String value) {
_backgroundPosition = value == null ? '' : value;
}