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