getDefFontSize method

double getDefFontSize()

get default font size.

Implementation

double getDefFontSize() {
  if (style.styleMap.containsKey(type)) {
    return style.styleMap[type]!.fontSize ?? 14;
  }
  return 14;
}