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