displaySmallSize static method

double? displaySmallSize(
  1. BuildContext context
)

Gets the displaySmall font size from the theme.

Implementation

static double? displaySmallSize(BuildContext context) {
  return context.theme.textTheme.displaySmall?.fontSize;
}