maybeOf static method

NomoScaffoldThemeDataNullable? maybeOf(
  1. dynamic context
)

Implementation

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