head method

PostgrestBuilder<void, void, void> head()

Performs a head request.

This will not return any data, but can only be used for either

supabase.from("table").select().head();

or

supabase.rpc("function").head();

Implementation

PostgrestBuilder<void, void, void> head() {
  return _copyWithType(method: METHOD_HEAD);
}