toSignInWithAppleConfiguration method

SignInWithAppleConfiguration toSignInWithAppleConfiguration()

Converts the AppleIdpConfig to a SignInWithAppleConfiguration.

Implementation

SignInWithAppleConfiguration toSignInWithAppleConfiguration() {
  return SignInWithAppleConfiguration(
    serviceIdentifier: serviceIdentifier,
    bundleIdentifier: bundleIdentifier,
    redirectUri: redirectUri,
    teamId: teamId,
    keyId: keyId,
    key: key,
  );
}