bold static method
Implementation
static TextStyle bold({
double? height,
Color color = Colors.black,
bool isUnderline = false,
double fontSize = 15,
}) {
return GoogleFonts.inter(
fontSize: fontSize,
fontWeight: FontWeight.bold,
color: color,
height: height,
decoration: isUnderline ? TextDecoration.underline : TextDecoration.none,
);
}