maybeOf static method

NomoAppBarThemeDataNullable? maybeOf(
  1. dynamic context
)

Implementation

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