Flutter: Order the results

Orders the result with the specified column.

Examples

With `select()`

final data = await supabase
  .from('cities')
  .select('name, country_id')
  .order('id', ascending: true);

With embedded resources

final data = await supabase
  .from('countries')
  .select('name, cities(name)')
  .eq('name', 'United States')
  .order('name', foreignTable: 'cities');