smallSemiBold method

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

Implementation

smallSemiBold({Color? color, double? height}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w600,
    fontSize: JuiFontSize.f14,
    color: color ?? JuiColors.primaryColor,
    height: height,
  );
}