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