of static method

NomoVerticalMenuThemeDataNullable of(
  1. dynamic context
)

Implementation

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