auth property

GoTrueClient get auth

Implementation

GoTrueClient get auth {
  if (accessToken == null) {
    return _authInstance;
  } else {
    throw AuthException(
      'Supabase Client is configured with the accessToken option, accessing supabase.auth is not possible.',
    );
  }
}