rangeLt method

PostgrestFilterBuilder rangeLt(
  1. String column,
  2. String range
)

Finds all rows whose range value on the stated column is strictly to the left of the specified range.

postgrest.from('users').select().sl('age_range', '[2,25)')

Implementation

PostgrestFilterBuilder rangeLt(String column, String range) {
  appendSearchParams(column, 'sl.$range');
  return this;
}