(tokenResult: FIRAuthTokenResult)
| 846 | _native: FIRAuthTokenResult; |
| 847 | |
| 848 | static fromNative(tokenResult: FIRAuthTokenResult) { |
| 849 | if (tokenResult instanceof FIRAuthTokenResult) { |
| 850 | const result = new AuthTokenResult(); |
| 851 | result._native = tokenResult; |
| 852 | return result; |
| 853 | } |
| 854 | return null; |
| 855 | } |
| 856 | |
| 857 | get native() { |
| 858 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected