maybeOf static method
Returns the nearest expressive theme, or null if none is found.
Implementation
static M3EThemeData? maybeOf(BuildContext context) {
final M3EInheritedTheme? inherited = context
.getInheritedWidgetOfExactType<M3EInheritedTheme>();
if (inherited != null) {
return inherited.data;
}
return M3EThemeScope.resolveOf(context);
}