SupaRangeModifier<B extends SupaCore, R extends SupaRecord<B>> constructor

  1. @internal
const SupaRangeModifier<B extends SupaCore, R extends SupaRecord<B>>(
  1. int from,
  2. int to,
  3. SupaModifier<B, R, dynamic, PostgrestTransformBuilder<List<Map<String, dynamic>>>, PostgrestBuilder>? previousModifier
)

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);