getLightTextStyle function

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

Implementation

TextStyle getLightTextStyle({double fontSize = FontSize.s10, required Color color}) {
  return _getTextStyle(
    fontSize: fontSize,
    fontWeight: FontWightManager.fontWeightLight,
    fontFamily: FontManager.fontFamilyApp,
    color: color,
  );
}