AuthChangeNotifier constructor

AuthChangeNotifier()

Implementation

AuthChangeNotifier() {
  _subscription = Supabase.instance.client.auth.onAuthStateChange.listen((_) {
    notifyListeners();
  });
}