wordBreak property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getwordBreak
Gets the value of "word-break"
Implementation
String get wordBreak => getPropertyValue('word-break');
setwordBreak (String value)
Sets the value of "word-break"
Implementation
set wordBreak(String value) {
setProperty('word-break', value, '');
}