(credential: FIRAuthCredential)
| 636 | protected _native: FIRAuthCredential; |
| 637 | |
| 638 | static fromNative(credential: FIRAuthCredential) { |
| 639 | if (credential instanceof FIRAuthCredential) { |
| 640 | const nativeCredential = new AuthCredential(); |
| 641 | nativeCredential._native = credential; |
| 642 | return nativeCredential; |
| 643 | } |
| 644 | return null; |
| 645 | } |
| 646 | |
| 647 | get native() { |
| 648 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected