bigger method

dynamic bigger({
  1. Color? color,
  2. double? height,
})

Implementation

bigger({
  Color? color,
  double? height,
}) {
  return TextStyle(
    fontFamily: "Montserrat",
    fontWeight: FontWeight.w400,
    fontSize: JuiFontSize.f18,
    color: color ?? JuiColors.primaryColor,
    height: height,
  );
}