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

Method fromNative

packages/firebase-auth/index.ios.ts:638–645  ·  view source on GitHub ↗
(credential: FIRAuthCredential)

Source from the content-addressed store, hash-verified

636 protected _native: FIRAuthCredential;
637
638 static fromNative(credential: FIRAuthCredential) {
639 if (credential instanceof FIRAuthCredential) {
640 const nativeCredential = new AuthCredential();
641 nativeCredential._native = credential;
642 return nativeCredential;
643 }
644 return null;
645 }
646
647 get native() {
648 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected