reference property

You can change the Firestore reference.

By specifying multiple items in the array, it is possible to issue and read queries simultaneously.

Implementation

DocumentReference<DynamicMap> get reference {
  if (_reference != null) {
    return _reference!;
  }
  return firestore.doc(path);
}