customTextDefaultStyle static method
TextStyle
customTextDefaultStyle({
- Color? color = ThemeColors.textColor,
- String? fontName,
- double? textSize,
- FontWeight? fontWeight,
Implementation
static TextStyle customTextDefaultStyle({Color? color = ThemeColors.textColor, String? fontName, double? textSize, FontWeight? fontWeight}) {
return GoogleFonts.getFont(fontName ?? prefsHelper.getFontName(), color: color, fontWeight: fontWeight ?? _regular, fontSize: textSize ?? Sizes.textSizeDefault, fontStyle: FontStyle.normal);
}