startAfter method

  1. @override
Query<T> startAfter(
  1. List<Object?>? values
)
override

Takes a list of values, creates and returns a new Query that starts after 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 "start" query modifiers.

Implementation

@override
_i2.Query<T> startAfter(List<Object?>? values) =>
    (super.noSuchMethod(Invocation.method(#startAfter, [values]), returnValue: _FakeQuery<T>()) as _i2.Query<T>);