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