of static method
Implementation
static NomoNotificationThemeDataNullable of(BuildContext context) {
final result = context
.dependOnInheritedWidgetOfExactType<NomoNotificationThemeOverride>();
assert(result != null, 'No ThemeInfo found in context');
return result!.data;
}