snapshots method

  1. @override
Stream<QuerySnapshot<Map<String, dynamic>>> snapshots({
  1. 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!;