csv method

Retrieves the response as CSV. This will skip object parsing.

postgrest.from('users').select().csv()

Implementation

PostgrestTransformBuilder csv() {
  headers['Accept'] = 'text/csv';
  return this;
}