primaryOf static method

TextTheme primaryOf(
  1. BuildContext context
)

The ThemeData.primaryTextTheme property of the ambient Theme.

Equivalent to Theme.of(context).primaryTextTheme.

See also:

Implementation

static TextTheme primaryOf(BuildContext context) => Theme.of(context).primaryTextTheme;