startAfterDocument method

Query<T> startAfterDocument(
  1. DocumentSnapshot<Object?> documentSnapshot
)

Sets the starting point for the query using a document snapshot.

Implementation

Query<T> startAfterDocument(DocumentSnapshot documentSnapshot) {
  state = state.startAfterDocument(documentSnapshot);
  return state;
}