(info: com.google.firebase.auth.UserInfo)
| 68 | _native: com.google.firebase.auth.UserInfo; |
| 69 | |
| 70 | static fromNative(info: com.google.firebase.auth.UserInfo) { |
| 71 | if (info) { |
| 72 | const nativeInfo = new UserInfo(); |
| 73 | nativeInfo._native = info; |
| 74 | return nativeInfo; |
| 75 | } |
| 76 | return null; |
| 77 | } |
| 78 | |
| 79 | get native() { |
| 80 | return this._native; |
nothing calls this directly
no outgoing calls
no test coverage detected