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