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