MCPcopy Index your code
hub / github.com/NativeScript/firebase / constructor

Method constructor

packages/firebase-app-check-debug/index.ios.ts:53–65  ·  view source on GitHub ↗
(app?: FirebaseApp)

Source from the content-addressed store, hash-verified

51 _nativeApp;
52 _app: FirebaseApp;
53 constructor(app?: FirebaseApp) {
54 if (app?.native) {
55 this._native = FIRAppCheck.appCheckWithApp(app.native);
56 this._nativeApp = app.native;
57 } else {
58 if (defaultAppCheck) {
59 return defaultAppCheck;
60 }
61 defaultAppCheck = this;
62 this._native = FIRAppCheck.appCheck();
63 this._nativeApp = FIRApp.defaultApp();
64 }
65 }
66
67 static setProviderFactory() {
68 if (!provider) {

Callers

nothing calls this directly

Calls 1

appCheckMethod · 0.65

Tested by

no test coverage detected