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