regularMedium method

dynamic regularMedium({
  1. Color? color,
  2. TextDecoration? decoration,
})

Implementation

regularMedium({Color? color, TextDecoration? decoration}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w500,
    fontSize: JuiFontSize.f16,
    color: color ?? JuiColors.primaryColor,
    decoration: decoration,
  );
}