of static method

The ThemeController from the closest InheritedThemeController instance that encloses the given context.

Implementation

static ThemeController of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<InheritedThemeController>()!
      .notifier!;
}