getBoldTextStyle function

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

Implementation

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