MCPcopy Index your code
hub / github.com/NativeScript/firebase / docs

Method docs

packages/firebase-firestore/index.android.ts:697–705  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

695 }
696
697 get docs() {
698 const documents = this.native.getDocuments();
699 const count = documents.size();
700 const docs = [];
701 for (let i = 0; i < count; i++) {
702 docs.push(QueryDocumentSnapshot.fromNative(documents.get(i)));
703 }
704 return docs;
705 }
706
707 get empty(): boolean {
708 return this.native.isEmpty();

Callers

nothing calls this directly

Calls 4

pushMethod · 0.65
getMethod · 0.65
sizeMethod · 0.45
fromNativeMethod · 0.45

Tested by

no test coverage detected