huge static method

TextStyle huge(
  1. BuildContext context, {
  2. Color? textColor,
})

Implementation

static TextStyle huge(BuildContext context, {Color? textColor}) {
  return TextStyle(
    fontFamily: 'Poppins',
    package: 'shared_component',
    fontSize: FontSizes.huge,
    color: textColor ?? Theme.of(context).textTheme.bodyLarge?.color,
  );
}