like method

PostgrestFilterBuilder like(
  1. String column,
  2. String pattern
)

Finds all rows whose value in the stated column matches the supplied pattern (case sensitive).

postgrest.from('users').select().like('username', '%supa%')

Implementation

PostgrestFilterBuilder like(String column, String pattern) {
  appendSearchParams(column, 'like.$pattern');
  return this;
}