limitToLast method

Query limitToLast(
  1. int limit
)

Create a query with limit and anchor it to the end of the window.

Implementation

Query limitToLast(int limit) {
  return Query._(
    _queryDelegate,
    _modifiers.limit(LimitModifier.limitToLast(limit)),
  );
}