h3 static method

TextStyle h3({
  1. Color color = AppColors.black,
  2. FontWeight fontWeight = FontWeight.bold,
  3. double fontSize = 24,
  4. double height = 1.25,
  5. double letterSpacing = 0,
})

Implementation

static TextStyle h3({
    Color color = AppColors.black,
    FontWeight fontWeight = FontWeight.bold,
    double fontSize = 24,
    double height = 1.25,
    double letterSpacing = 0,
  }) {
    return GoogleFonts.poppins(
      fontWeight: fontWeight,
      fontSize: fontSize,
      height: height,
      color: color,
      letterSpacing: letterSpacing,
    );
  }