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