postUrl static method

SyncHttpClientRequest postUrl(
  1. Uri uri
)

Send a POST request to the provided URL.

Implementation

static SyncHttpClientRequest postUrl(Uri uri) =>
    SyncHttpClientRequest._('POST', uri, true);