of static method

AppTheme of(
  1. BuildContext context
)

Implementation

static AppTheme of(BuildContext context) {
  final AppTheme? theme2 =
      context.dependOnInheritedWidgetOfExactType<AppThemeProvider>()?.theme;
  final AppTheme appTheme = theme2 ?? lightTheme;
  return appTheme;
}