small method

dynamic small({
  1. Color? color,
})

Implementation

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