PostgrestTransformBuilder<T> class

Inheritance
Implementers
Available Extensions

Constructors

PostgrestTransformBuilder(PostgrestBuilder<T, T> builder)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

appendSearchParams(String key, String value) → void
Update Uri queryParameters with new key:value Use lists to allow multiple values for the same key
inherited
asStream() Stream<T>
Creates a Stream containing the result of this future.
inherited
catchError(Function onError, {bool test(Object error)?}) Future<T>
Handles errors emitted by this Future.
inherited
csv() PostgrestTransformBuilder<T>
Retrieves the response as CSV. This will skip object parsing.
execute({bool head = false, CountOption? count}) Future<PostgrestResponse>
Sends the request and returns a PostgrestResponse
inherited
limit(int count, {String? foreignTable}) PostgrestTransformBuilder<T>
Limits the result with the specified count.
maybeSingle() PostgrestTransformBuilder<T>
Retrieves at most one row from the result.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
order(String column, {bool ascending = false, bool nullsFirst = false, String? foreignTable}) PostgrestTransformBuilder<T>
Orders the result with the specified column.
overrideSearchParams(String key, String value) → void
Overrides Uri queryParameters with new key:value
inherited
range(int from, int to, {String? foreignTable}) PostgrestTransformBuilder<T>
Limits the result to rows within the specified range, inclusive.
select<R>([String columns = '*']) PostgrestTransformBuilder<R>
Performs horizontal filtering with SELECT.
single() PostgrestTransformBuilder<T>
Retrieves only one row from the result.
then<R>(FutureOr<R> onValue(T value), {Function? onError}) Future<R>
Register callbacks to be called when this future completes.
inherited
timeout(Duration timeLimit, {FutureOr<T> onTimeout()?}) Future<T>
Stop waiting for this future after timeLimit has passed.
inherited
toString() String
A string representation of this object.
inherited
whenComplete(FutureOr<void> action()) Future<T>
Registers a function to be called when this future completes.
inherited
withConverter<R>(PostgrestConverter<R, T> converter) PostgrestBuilder<R, T>
Converts any response that comes from the server into a type-safe response.
inherited

Operators

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