snapshots method
Stream<QuerySnapshot<Map<String, dynamic> > >
snapshots({
- bool includeMetadataChanges = false,
override
Notifies of query results at this location.
Implementation
@override
Stream<QuerySnapshot<Map<String, dynamic>>> snapshots({
bool includeMetadataChanges = false,
}) =>
_snapshots == null
? throw UnimplementedError(
'You must supply snapshots to the constructor of '
'QueryFake')
: _snapshots!;