forEach method
Enumerates all of the documents in the QuerySnapshot.
Implementation
void forEach(Function(DocumentSnapshot) callback) {
final callbackWrap =
allowInterop((s) => callback(DocumentSnapshot.getInstance(s)));
return jsObject.forEach(callbackWrap);
}