(credential: any)
| 738 | protected _native: FIROAuthCredential; |
| 739 | |
| 740 | static fromNative(credential: any) { |
| 741 | if (credential instanceof FIRAuthCredential) { |
| 742 | const nativeCredential = new OAuthCredential(); |
| 743 | nativeCredential._native = credential as any; |
| 744 | return nativeCredential; |
| 745 | } |
| 746 | return null; |
| 747 | } |
| 748 | |
| 749 | get native() { |
| 750 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected