maybeOf static method

Theme? maybeOf(
  1. BuildContext context
)

Returns the nearest theme from the context, if any.

Implementation

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