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]) =>
    _get == null
        ? throw UnimplementedError(
            'You must get to the constructor of'
            ' QueryFake',
          )
        : _get!();