startAfterDocument method
Query<Map<String, dynamic> >
startAfterDocument(
- DocumentSnapshot<
Object?> documentSnapshot
override
Creates and returns a new Query
that starts after the provided document
(exclusive). The starting position is relative to the order of the query.
The documentSnapshot
must contain all of the fields provided in the orderBy of
this query.
Calling this method will replace any existing cursor "start" query modifiers.
Implementation
@override
Query<Map<String, dynamic>> startAfterDocument(
DocumentSnapshot<Object?> documentSnapshot,
) {
// TODO: implement startAfterDocument
throw UnimplementedError();
}