of static method

_ThemeModeHandlerState? of(
  1. BuildContext context
)

Access to the closest ThemeModeHandler instance to the given context.

Implementation

static _ThemeModeHandlerState? of(BuildContext context) {
  return context.findAncestorStateOfType<_ThemeModeHandlerState>();
}