of static method
Implementation
static ThemeData of(BuildContext context) {
final theme = context.dependOnInheritedWidgetOfExactType<Theme>();
assert(theme != null, 'No Theme found in context');
return theme!.data;
}
static ThemeData of(BuildContext context) {
final theme = context.dependOnInheritedWidgetOfExactType<Theme>();
assert(theme != null, 'No Theme found in context');
return theme!.data;
}