maybeOf static method

ArcaneTheme? maybeOf(
  1. BuildContext context
)

Try to get theme from context

Implementation

static ArcaneTheme? maybeOf(BuildContext context) {
  return ArcaneThemeProvider.of(context)?.theme;
}