fontWeight property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getfontWeight
Gets the value of "font-weight"
Implementation
String get fontWeight => getPropertyValue('font-weight');
setfontWeight (String value)
Sets the value of "font-weight"
Implementation
set fontWeight(String value) {
setProperty('font-weight', value, '');
}