PostgrestBuilder<T, S, R> constructor

PostgrestBuilder<T, S, R>({
  1. required Uri url,
  2. required Headers headers,
  3. String? schema,
  4. String? method,
  5. Object? body,
  6. Client? httpClient,
  7. YAJsonIsolate? isolate,
  8. CountOption? count,
  9. bool maybeSingle = false,
  10. PostgrestConverter<S, R>? converter,
})

Implementation

PostgrestBuilder({
  required Uri url,
  required Headers headers,
  String? schema,
  String? method,
  Object? body,
  Client? httpClient,
  YAJsonIsolate? isolate,
  CountOption? count,
  bool maybeSingle = false,
  PostgrestConverter<S, R>? converter,
})  : _maybeSingle = maybeSingle,
      _method = method,
      _converter = converter,
      _schema = schema,
      _url = url,
      _headers = headers,
      _httpClient = httpClient,
      _isolate = isolate,
      _count = count,
      _body = body;