smallMedium method

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

Implementation

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