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

Method fromNative

packages/firebase-auth/index.ios.ts:65–72  ·  view source on GitHub ↗
(info: FIRUserInfo)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected