p0 static method
TextStyle
p0({
- Color color = AppColors.black,
- FontWeight fontWeight = FontWeight.normal,
- double fontSize = 16,
- double height = 1.38,
- double letterSpacing = 0,
Implementation
static TextStyle p0({
Color color = AppColors.black,
FontWeight fontWeight = FontWeight.normal,
double fontSize = 16,
double height = 1.38,
double letterSpacing = 0,
}) {
return GoogleFonts.inter(
fontWeight: fontWeight,
fontSize: fontSize,
height: height,
color: color,
letterSpacing: letterSpacing,
);
}