MCPcopy Create free account
hub / github.com/NativeScript/firebase / fromNative

Method fromNative

packages/firebase-auth/index.android.ts:70–77  ·  view source on GitHub ↗
(info: com.google.firebase.auth.UserInfo)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected