updateFontStyle method
Implementation
void updateFontStyle(TypographyFontStyle style) {
switch (style) {
case TypographyFontStyle.underline:
fontStyle = 'underline';
break;
case TypographyFontStyle.bold:
fontStyle = 'bold';
break;
case TypographyFontStyle.italic:
fontStyle = 'italic';
break;
case TypographyFontStyle.line:
fontStyle = 'line';
break;
default:
fontStyle = 'none';
}
}