Flutter: Column is in an array

Finds all rows whose value on the stated column is found on the specified values.

is_ and in_ filter methods are suffixed with _ to avoid collisions with reserved keywords.

Examples

With `select()`

final data = await supabase
  .from('cities')
  .select('name, country_id')
  .in_('name', ['Minas Tirith', 'Minas Morgul']);

With `update()`

final data = await supabase
  .from('cities')
  .update(\{ 'name': 'Minas Morgul' \})
  .in_('name', ['Minas Ithil', 'Minas Tirith']);

With `delete()`

final data = await supabase
  .from('cities')
  .delete()
  .in_('name', ['Minas Tirith', 'Minas Morgul']);

With `rpc()`

// Only valid if the Stored Procedure returns a table type.
final data = await supabase
  .rpc('echo_all_cities')
  .in_('name', ['Minas Tirith', 'Minas Morgul']);