displayLargeSize static method

double? displayLargeSize(
  1. BuildContext context
)

Gets the displayLarge font size from the theme.

Implementation

static double? displayLargeSize(BuildContext context)
{
  return context.theme.textTheme.displayLarge?.fontSize;
}