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

Method fromNative

packages/firebase-auth/index.ios.ts:29–36  ·  view source on GitHub ↗
(metadata: FIRUserMetadata)

Source from the content-addressed store, hash-verified

27 _native: FIRUserMetadata;
28
29 static fromNative(metadata: FIRUserMetadata) {
30 if (metadata instanceof FIRUserMetadata) {
31 const meta = new UserMetadata();
32 meta._native = metadata;
33 return meta;
34 }
35 return null;
36 }
37
38 get native() {
39 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected