PostgrestBuilder<T> class

The base builder class.

Implementers

Constructors

PostgrestBuilder({required Uri url, required Map<String, String> headers, String? schema, String? method, dynamic body, Client? httpClient})

Properties

body ↔ dynamic
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
headers Map<String, String>
final
httpClient → Client?
final
maybeEmpty bool
getter/setter pair
method String?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schema String?
final
url Uri
getter/setter pair

Methods

appendSearchParams(String key, String value) → void
Update Uri queryParameters with new key:value Use lists to allow multiple values for the same key
execute({bool head = false, CountOption? count}) Future<PostgrestResponse<T>>
Sends the request and returns a Future. catch any error and returns with status 500
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
overrideSearchParams(String key, String value) → void
Overrides Uri queryParameters with new key:value
toString() String
A string representation of this object.
inherited
withConverter<S>(PostgrestConverter<S> converter) PostgrestBuilder<S>
Converts any response that comes from the server into a type-safe response.

Operators

operator ==(Object other) bool
The equality operator.
inherited