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