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

Method fromNative

packages/firebase-storage/index.ios.ts:29–36  ·  view source on GitHub ↗
(value: FIRStorageTaskSnapshot)

Source from the content-addressed store, hash-verified

27 _native: FIRStorageTaskSnapshot;
28
29 static fromNative(value: FIRStorageTaskSnapshot) {
30 if (value instanceof FIRStorageTaskSnapshot) {
31 const ss = new TaskSnapshot();
32 ss._native = value;
33 return ss;
34 }
35 return null;
36 }
37
38 get native() {
39 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected