get method

  1. @override
Future<QuerySnapshot<Map<String, dynamic>>> get([
  1. GetOptions? options
])
override

Fetch the documents for this query.

To modify how the query is fetched, the options parameter can be provided with a GetOptions instance.

Implementation

@override
Future<QuerySnapshot<Map<String, dynamic>>> get([GetOptions? options]) {
  // TODO: implement get
  throw UnimplementedError();
}