()
| 398 | } |
| 399 | |
| 400 | get idpSecret(): string { |
| 401 | if (this._isOauthCred) { |
| 402 | const cred = this.native.credential as FIROAuthCredential; |
| 403 | return cred.secret; |
| 404 | } |
| 405 | return null; |
| 406 | } |
| 407 | |
| 408 | get idpToken(): string { |
| 409 | if (this._isOauthCred) { |
nothing calls this directly
no outgoing calls
no test coverage detected