providerName

Extension property to get the human-readable name of the OAuth provider.

This property provides a convenient way to access the display name of an OAuth provider without directly accessing the internal providerData property.

Return

The human-readable name of the OAuth provider (e.g., "Google", "GitHub", "Facebook").

Example usage:

val provider = OAuthProvider.GOOGLE
val displayName = provider.providerName // Returns "Google"