PostgrestBuilder<T> constructor

PostgrestBuilder<T>({
  1. required Uri url,
  2. required Map<String, String> headers,
  3. String? schema,
  4. String? method,
  5. dynamic body,
  6. Client? httpClient,
})

Implementation

PostgrestBuilder({
  required this.url,
  required this.headers,
  this.schema,
  this.method,
  this.body,
  this.httpClient,
});