(credential: FIRPhoneAuthCredential)
| 825 | protected _native: FIRPhoneAuthCredential; |
| 826 | |
| 827 | static fomNative(credential: FIRPhoneAuthCredential) { |
| 828 | if (credential instanceof FIRPhoneAuthCredential) { |
| 829 | const nativeCredential = new PhoneAuthCredential(); |
| 830 | nativeCredential._native = credential; |
| 831 | return nativeCredential; |
| 832 | } |
| 833 | return null; |
| 834 | } |
| 835 | |
| 836 | get native() { |
| 837 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected