(info: FIRUserInfo)
| 63 | _native: FIRUserInfo; |
| 64 | |
| 65 | static fromNative(info: FIRUserInfo) { |
| 66 | if (info) { |
| 67 | const nativeInfo = new UserInfo(); |
| 68 | nativeInfo._native = info; |
| 69 | return nativeInfo; |
| 70 | } |
| 71 | return null; |
| 72 | } |
| 73 | |
| 74 | get native() { |
| 75 | return this._native as any; |
nothing calls this directly
no outgoing calls
no test coverage detected