authProviderNonceSessionKey function

String authProviderNonceSessionKey(
  1. String nonceKey,
  2. String providerId
)

Session key for the OIDC nonce associated with a provider flow.

Implementation

String authProviderNonceSessionKey(String nonceKey, String providerId) {
  return '$nonceKey.$providerId';
}