h3Medium method

dynamic h3Medium({
  1. Color? color,
  2. double? height,
})

Implementation

h3Medium({
  Color? color,
  double? height,
}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w500,
    fontSize: JuiFontSize.f32,
    color: color ?? JuiColors.black,
    height: height,
  );
}