h5 method

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

Implementation

h5({Color? color}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w700,
    fontSize: JuiFontSize.f20,
    color: color ?? JuiColors.primaryColor,
    height: 1.58,
  );
}