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