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