(idToken: string, nonce: string)
| 711 | |
| 712 | export class AppleAuthProvider { |
| 713 | static credential(idToken: string, nonce: string) { |
| 714 | return AuthCredential.fromNative(FIROAuthProvider.credentialWithProviderIDIDTokenRawNonce('apple.com', idToken, nonce)); |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | export class FacebookAuthProvider { |
nothing calls this directly
no test coverage detected