range method

SupaRangeModifier<B, R> range(
  1. int from,
  2. int to
)

Limit the query to a range

Limits the result to rows within the specified range, inclusive.

from: The starting index from which to limit the result.

to: The last index to which to limit the result.

Implementation

SupaRangeModifier<B, R> range(int from, int to) =>
    SupaRangeModifier(from, to, null);