getDefFontSize method
get default font size.
Implementation
double getDefFontSize() {
if (style.styleMap.containsKey(type)) {
return style.styleMap[type]!.fontSize ?? 14;
}
return 14;
}
get default font size.
double getDefFontSize() {
if (style.styleMap.containsKey(type)) {
return style.styleMap[type]!.fontSize ?? 14;
}
return 14;
}