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