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

Method fromNative

packages/firebase-storage/index.ios.ts:200–207  ·  view source on GitHub ↗
(value: FIRStorageListResult)

Source from the content-addressed store, hash-verified

198 _native: FIRStorageListResult;
199
200 static fromNative(value: FIRStorageListResult) {
201 if (value instanceof FIRStorageListResult) {
202 const list = new ListResult();
203 list._native = value;
204 return list;
205 }
206 return null;
207 }
208
209 get native() {
210 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected