RawPostgrestBuilder<T, S, R> constructor

RawPostgrestBuilder<T, S, R>(
  1. PostgrestBuilder<T, S, R> builder
)

Implementation

RawPostgrestBuilder(PostgrestBuilder<T, S, R> builder)
    : super(
        url: builder._url,
        method: builder._method,
        headers: builder._headers,
        schema: builder._schema,
        body: builder._body,
        httpClient: builder._httpClient,
        count: builder._count,
        isolate: builder._isolate,
        maybeSingle: builder._maybeSingle,
        converter: builder._converter,
      );