getFontFamily static method
Return fontFamily of a text and default textSize is UFUFontFamily.roboto
Implementation
static String getFontFamily(
UFUFontFamily fontFamily,
UFUFontWeight fontWeight,
) {
switch (fontFamily) {
case UFUFontFamily.productSans:
return getRobotoFontFamily(fontWeight);
// default:
// return 'productSans';
}
}