get method
Implementation
Future<InAppQuerySnapshot> get() {
return _db
._r(
reference: reference,
collectionPath: path,
collectionId: id,
documentId: id,
type: InAppReadType.collection,
)
.then((_) => _ is InAppQuerySnapshot ? _ : InAppQuerySnapshot(_id));
}