maybeOf static method

Implementation

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