h4Bold method

dynamic h4Bold({
  1. Color? color,
})

Implementation

h4Bold({Color? color}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w700,
    fontSize: JuiFontSize.f24,
    color: color ?? JuiColors.primaryColor,
  );
}