maybeOf static method

Implementation

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