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