maybeOf static method

M3EThemeData? maybeOf(
  1. BuildContext context
)

Returns the nearest expressive theme, or null if none is found.

Implementation

static M3EThemeData? maybeOf(BuildContext context) {
  final M3EInheritedTheme? inherited = context
      .getInheritedWidgetOfExactType<M3EInheritedTheme>();
  if (inherited != null) {
    return inherited.data;
  }
  return M3EThemeScope.resolveOf(context);
}