(user: FIRUser)
| 318 | _native: FIRUser; |
| 319 | |
| 320 | static fromNative(user: FIRUser) { |
| 321 | if (user instanceof FIRUser) { |
| 322 | const ret = new User(); |
| 323 | ret._native = user; |
| 324 | return ret; |
| 325 | } |
| 326 | return null; |
| 327 | } |
| 328 | |
| 329 | get native() { |
| 330 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected