labelMedium method

dynamic labelMedium({
  1. Color? color,
  2. FontWeight? fontWeight,
})

Implementation

labelMedium({Color? color, FontWeight? fontWeight}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: fontWeight ?? FontWeight.w500,
    fontSize: JuiFontSize.f12,
    color: color ?? JuiColors.primaryColor,
  );
}