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

Method fromNative

packages/firebase-ui/index.android.ts:455–462  ·  view source on GitHub ↗
(user: com.firebase.ui.auth.data.model.User)

Source from the content-addressed store, hash-verified

453 _native: com.firebase.ui.auth.data.model.User;
454
455 static fromNative(user: com.firebase.ui.auth.data.model.User) {
456 if (user instanceof com.firebase.ui.auth.data.model.User) {
457 const ret = new User();
458 ret._native = user;
459 return ret;
460 }
461 return null;
462 }
463
464 get native() {
465 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected