getTheme method

ThemeData? getTheme()

Implementation

ThemeData? getTheme() {
  return theme?.copyWith(
    textTheme: theme?.textTheme.apply(
      fontFamily: fontFamily,
    ),
  );
}