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