(response: FIRAuthDataResult)
| 368 | _native: FIRAuthDataResult; |
| 369 | _isOauthCred = false; |
| 370 | static fromNative(response: FIRAuthDataResult) { |
| 371 | if (response instanceof FIRAuthDataResult) { |
| 372 | const ret = new IdpResponse(); |
| 373 | ret._native = response; |
| 374 | ret._isOauthCred = response.credential instanceof FIROAuthCredential; |
| 375 | return ret; |
| 376 | } |
| 377 | return null; |
| 378 | } |
| 379 | |
| 380 | get native() { |
| 381 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected