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

Method fromNative

packages/firebase-storage/index.android.ts:167–174  ·  view source on GitHub ↗
(value: com.google.firebase.storage.ListResult)

Source from the content-addressed store, hash-verified

165 _native: com.google.firebase.storage.ListResult;
166
167 static fromNative(value: com.google.firebase.storage.ListResult) {
168 if (value instanceof com.google.firebase.storage.ListResult) {
169 const list = new ListResult();
170 list._native = value;
171 return list;
172 }
173 return null;
174 }
175
176 get native() {
177 return this._native;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected