String backgroundRepeat

Gets the value of "background-repeat"

Source

String get backgroundRepeat => this._backgroundRepeat;
void backgroundRepeat=(String value)

Sets the value of "background-repeat"

Source

set backgroundRepeat(String value) {
  _backgroundRepeat = value == null ? '' : value;
}