of static method

NhostAuthClient? of(
  1. BuildContext context
)

Implementation

static NhostAuthClient? of(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<NhostAuthProvider>()
      ?.notifier
      ?.value;
}