getFontWeight static method
Implementation
static String getFontWeight(FontWeight fontWeight) {
switch (fontWeight) {
case FontWeight.BOLD:
return "bold";
case FontWeight.ITALIC:
return "italic";
case FontWeight.BOLD_ITALIC:
return "bold_italic";
case FontWeight.NORMAL:
default:
return "normal";
}
}