SupaRangeModifier<B extends SupaCore, R extends SupaRecord<B> > constructor
- @internal
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
@internal
const SupaRangeModifier(this.from, this.to, super.previousModifier);