whiteSpace property - CssStyleDeclaration class - dart:html library (original) (raw)
String getwhiteSpace
override
Gets the value of "white-space"
Implementation
String get whiteSpace => this._whiteSpace;
setwhiteSpace (String? value)
override
Sets the value of "white-space"
Implementation
set whiteSpace(String? value) {
_whiteSpace = value == null ? '' : value;
}