of static method

Implementation

static SimpleHiddenDrawerBloc? of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<SimpleHiddenDrawerProvider>()
      ?.hiddenDrawerBloc;
}