endBefore method
Takes a list of values
, creates and returns a new Query
that ends before
the provided fields relative to the order of the query.
The values
must be in order of orderBy filters.
Calling this method will replace any existing cursor "end" query modifiers.
Implementation
@override
Query<Map<String, dynamic>> endBefore(Iterable<Object?> values) {
// TODO: implement endBefore
throw UnimplementedError();
}