lte method

SupabaseStreamBuilder lte(
  1. String column,
  2. Object value
)

Filters the results where column is less than or equal to value.

Only one filter can be applied to .stream().

supabase.from('users').stream(primaryKey: ['id']).lte('likes', 100);

Implementation

SupabaseStreamBuilder lte(String column, Object value) {
  _streamFilter = _StreamPostgrestFilter(
    type: PostgresChangeFilterType.lte,
    column: column,
    value: value,
  );
  return this;
}