headlineLargeSize static method

double? headlineLargeSize(
  1. BuildContext context
)

Gets the headlineLarge font size from the theme.

Implementation

static double? headlineLargeSize(BuildContext context)
{
  return context.theme.textTheme.headlineLarge?.fontSize;
}