L method

TextStyle L({
  1. Color? color,
  2. bool? isBold,
  3. FontWeight fontWeight = FontWeight.normal,
  4. bool? isStatic,
})

Implementation

TextStyle L(
    {Color? color,
    bool? isBold,
    FontWeight fontWeight = FontWeight.normal,
    bool? isStatic}) {
  color ??= Get.find<AppColors>().textColor;
  return TextStyle(
      fontSize: isStatic == null
          ? _size4
          : isStatic
              ? _staticSizes["L"]
              : _sizeRatios["L"],
      color: color,
      fontWeight: isBold == null
          ? fontWeight
          : isBold
              ? FontWeight.bold
              : FontWeight.normal);
}