Flutter: Limit the query to a range

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

Examples

With `select()`

final data = await supabase
  .from('cities')
  .select('name, country_id')
  .range(0,3);