maybeOf static method

VoicebotTheme? maybeOf(
  1. BuildContext context
)

The nearest ancestor theme, or null if none was provided.

Implementation

static VoicebotTheme? maybeOf(BuildContext context) => context
    .dependOnInheritedWidgetOfExactType<VoicebotThemeProvider>()
    ?.theme;