regularColor static method
Implementation
static TextStyle regularColor({
double? height,
double? letterSpacing,
Color? color,
bool isUnderline = false,
double fontSize = 15,
}) {
return GoogleFonts.inter(
fontSize: fontSize,
fontWeight: FontWeight.w300,
color: color??AppColors.primaryColor,
height: height,
decoration:
isUnderline ? TextDecoration.underline : TextDecoration.none,
letterSpacing: letterSpacing);
}