maybeOf static method

NomoBottomBarThemeDataNullable? maybeOf(
  1. dynamic context
)

Implementation

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