p0 static method

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