AuthProvider.oidc constructor

const AuthProvider.oidc(
  1. String name,
  2. String issuer
)

Auth provider that uses OpenID Connect.

The provided name should match whatever name you provided when configuring the provider, while issuer must match the iss value of the provider's ID token.

Implementation

const AuthProvider.oidc(this.name, String issuer)
    : _identityPoolProvider = issuer;