maybeOf static method

Implementation

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