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

Method fromNative

packages/firebase-ui/index.ios.ts:320–327  ·  view source on GitHub ↗
(user: FIRUser)

Source from the content-addressed store, hash-verified

318 _native: FIRUser;
319
320 static fromNative(user: FIRUser) {
321 if (user instanceof FIRUser) {
322 const ret = new User();
323 ret._native = user;
324 return ret;
325 }
326 return null;
327 }
328
329 get native() {
330 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected