p3 static method

TextStyle p3({
  1. Color color = AppColors.black,
  2. FontWeight fontWeight = FontWeight.normal,
  3. double fontSize = 12,
  4. double height = 1.3,
  5. 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,
  );
}