label method

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

Implementation

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