lte method

PostgrestFilterBuilder lte(
  1. String column,
  2. dynamic value
)

Finds all rows whose value on the stated column is less than or equal to the specified value.

postgrest.from('messages').select().lte('id', 2)

Implementation

PostgrestFilterBuilder lte(String column, dynamic value) {
  appendSearchParams(column, 'lte.$value');
  return this;
}