getRegularStyle function

TextStyle getRegularStyle({
  1. double fontSize = AppFontSize.s12,
  2. required Color color,
})

Implementation

TextStyle getRegularStyle(
    {double fontSize = AppFontSize.s12, required Color color}) {
  return _getTextStyle(
      fontSize, FontConstants.fontFamily, AppFontWeight.regular, color);
}