initFontStyle method

String initFontStyle()

Implementation

String initFontStyle() {
  return "${fontSize != null ? "font-size: ${getSizeWithUnit(fontSize, sizeUnit)};" : ""}${fontFamily != null ? "font-family: ${fontFamily!};" : ""}${fontWeight != null ? "font-weight: ${_getFontWeightValue(fontWeight)};" : ""}";
}