whiteSpace property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getwhiteSpace

Gets the value of "white-space"

Implementation

String get whiteSpace => getPropertyValue('white-space');

setwhiteSpace (String value)

Sets the value of "white-space"

Implementation

set whiteSpace(String value) {
  setProperty('white-space', value, '');
}