A check for exact equality (null, true, false), finds all rows whose value on the stated column
exactly match the specified value
.
The column to filter on.
The value to filter with.
final data = await supabase
.from('countries')
.select()
.isFilter('name', null);