label method
Implementation
label({Color? color, FontWeight? fontWeight}) {
return TextStyle(
fontFamily: "Montserrat",
fontWeight: fontWeight ?? FontWeight.w400,
fontSize: JuiFontSize.f12,
color: color ?? JuiColors.primaryColor,
);
}