maybeOf static method
Retrieves the nearest ThemeData, or null if none is found.
Implementation
static ThemeData maybeOf(BuildContext context) {
final widget = context.dependOnInheritedWidgetOfExactType<Theme>();
return widget?.data ?? ThemeData.dark;
}