getRegularTextStyle function

TextStyle getRegularTextStyle({
  1. double fontSize = FontSize.s12,
  2. required Color color,
})

Implementation

TextStyle getRegularTextStyle({double fontSize = FontSize.s12, required Color color}) {
  return _getTextStyle(
    fontSize: fontSize,
    fontWeight: FontWightManager.fontWeightRegular,
    fontFamily: FontManager.fontFamilyApp,
    color: color,
  );
}