of static method

AppTheme of(
  1. BuildContext context
)

Implementation

static AppTheme of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<InheritedAppTheme>()!
      .theme;
}