from method

Perform a table operation.

Implementation

PostgrestQueryBuilder from(String table) {
  final url = '${this.url}/$table';
  return PostgrestQueryBuilder(
    url,
    headers: headers,
    schema: schema,
    httpClient: httpClient,
  );
}