recursiveTextTheme static method

TextTheme recursiveTextTheme([
  1. TextTheme? textTheme
])

Applies the Recursive font family from Google Fonts to every TextStyle in the given textTheme.

See:

Implementation

static TextTheme recursiveTextTheme([TextTheme? textTheme]) {
  return GoogleFonts._recursiveTextTheme(textTheme);
}