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

Method fromNative

packages/firebase-auth/index.android.ts:904–911  ·  view source on GitHub ↗
(tokenResult: com.google.firebase.auth.GetTokenResult)

Source from the content-addressed store, hash-verified

902 _native: com.google.firebase.auth.GetTokenResult;
903
904 static fromNative(tokenResult: com.google.firebase.auth.GetTokenResult) {
905 if (tokenResult instanceof com.google.firebase.auth.GetTokenResult) {
906 const result = new AuthTokenResult();
907 result._native = tokenResult;
908 return result;
909 }
910 return null;
911 }
912
913 get native() {
914 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected