get method

Future<AggregateQuerySnapshot> get({
  1. AggregateSource source = AggregateSource.server,
})

Returns an AggregateQuerySnapshot with the count of the documents that match the query.

Implementation

Future<AggregateQuerySnapshot> get({
  AggregateSource source = AggregateSource.server,
}) async {
  return AggregateQuerySnapshot._(await _delegate.get(source: source), query);
}