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

Method fromNative

packages/firebase-storage/index.ios.ts:354–361  ·  view source on GitHub ↗
(value: FIRStorageReference)

Source from the content-addressed store, hash-verified

352 _native: FIRStorageReference;
353
354 static fromNative(value: FIRStorageReference) {
355 if (value instanceof FIRStorageReference) {
356 const ref = new Reference();
357 ref._native = value;
358 return ref;
359 }
360 return null;
361 }
362
363 get native() {
364 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected