offset method

  1. @override
QueryBuilderInterface<T> offset(
  1. int count
)
override

Offsets the results (useful with pagination).

Implementation

@override
QueryBuilderInterface<T> offset(int count) => skip(count);