is_ method

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

A check for exact equality (null, true, false)

Finds all rows whose value on the stated column exactly match the specified value.

postgrest.from('users').select().is_('data', null)

Implementation

// ignore: non_constant_identifier_names
PostgrestFilterBuilder is_(String column, dynamic value) {
  appendSearchParams(column, 'is.$value');
  return this;
}