customTextStyle static method
TextStyle
customTextStyle({
- double? fontSize,
- double? lineHeight,
- TextDecoration? textDecoration,
- FontWeight? fontWeight,
- Color? color,
Implementation
static TextStyle customTextStyle({
double? fontSize,
double? lineHeight,
TextDecoration? textDecoration,
FontWeight? fontWeight,
Color? color,
}) {
return GoogleFonts.plusJakartaSans(
fontSize: fontSize,
height: lineHeight,
color: color ?? AppColor.colorDark,
fontWeight: fontWeight,
decoration: textDecoration,
);
}