get method
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!();