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