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

description

String getwordWrap

Gets the value of "word-wrap"

Implementation

String get wordWrap => getPropertyValue('word-wrap');

setwordWrap (String value)

Sets the value of "word-wrap"

Implementation

set wordWrap(String value) {
  setProperty('word-wrap', value, '');
}