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) {
  assert(!_parameters.containsKey('limitToLast'));
  return _copyWithParameters(<String, dynamic>{'limitToLast': limit});
}