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

Method fromNative

packages/firebase-auth/index.ios.ts:848–855  ·  view source on GitHub ↗
(tokenResult: FIRAuthTokenResult)

Source from the content-addressed store, hash-verified

846 _native: FIRAuthTokenResult;
847
848 static fromNative(tokenResult: FIRAuthTokenResult) {
849 if (tokenResult instanceof FIRAuthTokenResult) {
850 const result = new AuthTokenResult();
851 result._native = tokenResult;
852 return result;
853 }
854 return null;
855 }
856
857 get native() {
858 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected