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

Method fromNative

packages/firebase-remote-config/index.ios.ts:23–30  ·  view source on GitHub ↗
(value: FIRRemoteConfigValue)

Source from the content-addressed store, hash-verified

21export class ConfigValue implements IConfigValue {
22 _native: FIRRemoteConfigValue;
23 static fromNative(value: FIRRemoteConfigValue) {
24 if (value instanceof FIRRemoteConfigValue) {
25 const val = new ConfigValue();
26 val._native = value;
27 return val;
28 }
29 return null;
30 }
31
32 get native() {
33 return this._native;

Callers 8

appMethod · 0.45
settingsMethod · 0.45
activateMethod · 0.45
ensureInitializedMethod · 0.45
fetchMethod · 0.45
fetchAndActivateMethod · 0.45
getAllMethod · 0.45
getValueMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected