maybeOf static method

NomoVerticalMenuThemeDataNullable? maybeOf(
  1. dynamic context
)

Implementation

static NomoVerticalMenuThemeDataNullable? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<NomoVerticalMenuThemeOverride>()
      ?.data;
}