Retrieves only one row from the result. Result must be one row (e.g. using limit), otherwise this will result in an error.
final data = await supabase .from('countries') .select('name') .limit(1) .single();