from method

PostgrestQueryBuilder<void> from(
  1. String table
)

Perform a table operation.

Implementation

PostgrestQueryBuilder<void> from(String table) {
  final url = '${this.url}/$table';
  return PostgrestQueryBuilder<void>(
    url: Uri.parse(url),
    headers: {...headers},
    schema: _schema,
    httpClient: httpClient,
    isolate: _isolate,
  );
}