of static method

ArcaneTheme of(
  1. BuildContext context
)

Get theme from context (via InheritedComponent)

Implementation

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