of static method

Returns the nearest AdaptiveChameleonTheme instance up the widget tree. Throws an error if no AdaptiveChameleonTheme is found.

Implementation

static AdaptiveChameleonThemeWidgetState of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<AdaptiveChameleonTheme>()!
      .data;
}