dereference method

Dereferences the document references in the result of this query. For example, collection.query().snapshot() returns an array of DocumentReference objects, but collection.query().dereference().snapshot() returns an array of the actual document data.

Implementation

@override
SnapshotEmitter<DocumentData> dereference() => _DereferenceEmitter._(this);