customTextStyle static method
TextStyle
customTextStyle({
- double? fontSize,
- FontWeight? fontWeight,
- Color? color,
- double? letterSpacing,
- TextOverflow? overflow,
Implementation
static TextStyle customTextStyle({
double? fontSize,
FontWeight? fontWeight,
Color? color,
double? letterSpacing,
TextOverflow? overflow,
}) {
return GoogleFonts.workSans(
fontSize: fontSize,
fontWeight: fontWeight,
color: color,
letterSpacing: letterSpacing);
}