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