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

Method fromNative

packages/firebase-storage/index.android.ts:367–374  ·  view source on GitHub ↗
(value: com.google.firebase.storage.StorageReference)

Source from the content-addressed store, hash-verified

365 _native: com.google.firebase.storage.StorageReference;
366
367 static fromNative(value: com.google.firebase.storage.StorageReference) {
368 if (value instanceof com.google.firebase.storage.StorageReference) {
369 const ref = new Reference();
370 ref._native = value;
371 return ref;
372 }
373 return null;
374 }
375
376 get native() {
377 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected