maybeOf static method

DesignSystemTheme? maybeOf(
  1. BuildContext context
)

Implementation

static DesignSystemTheme? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<DesignSystemThemeScope>()
      ?.theme;
}