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

Method fromNative

packages/firebase-storage/index.ios.ts:249–256  ·  view source on GitHub ↗
(value: FIRStorageMetadata)

Source from the content-addressed store, hash-verified

247 }
248
249 static fromNative(value: FIRStorageMetadata) {
250 if (value instanceof FIRStorageMetadata) {
251 const meta = new Metadata();
252 meta._native = value;
253 return meta;
254 }
255 return null;
256 }
257
258 get native() {
259 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected