stream abstract method

Stream<T> stream({
  1. int limit = 1000000,
  2. int offset = 0,
})

Returns a stream of results, optionally limited by: offset: starts returning results from the specified offset and skips all records before. SQL: OFFSET

Implementation

Stream<T> stream({int limit = 1000000, int offset = 0});