Lists the OAuth grants the signed-in user has issued to third-party OAuth clients.
Requires an authenticated user. Returns the grants issued by the current user.
Examples
List OAuth grants
final List<OAuthGrant> grants = await supabase.auth.oauth.listGrants();
for (final grant in grants) {
print('${grant.client.clientId}: ${grant.scopes}');
}