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

Method docs

packages/firebase-firestore/index.ios.ts:637–645  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

635 }
636
637 get docs() {
638 const documents = this.native.documents;
639 const count = documents.count;
640 const docs = [];
641 for (let i = 0; i < count; i++) {
642 docs.push(QueryDocumentSnapshot.fromNative(documents.objectAtIndex(i)));
643 }
644 return docs;
645 }
646
647 get empty(): boolean {
648 return this.native.empty;

Callers

nothing calls this directly

Calls 2

pushMethod · 0.65
fromNativeMethod · 0.45

Tested by

no test coverage detected