post method

Future<HttpResponse> post(
  1. HttpClient httpClient,
  2. String path, {
  3. bool fullPath = false,
  4. Credential? authorization,
  5. Map<String, String?>? parameters,
  6. Object? body,
  7. String? contentType,
  8. String? accept,
  9. OnCachedResponse? onStaleResponse,
  10. Duration? staleResponseDelay,
})

Does a POST request.

Implementation

Future<HttpResponse> post(HttpClient httpClient, String path,
    {bool fullPath = false,
    Credential? authorization,
    Map<String, String?>? parameters,
    Object? body,
    String? contentType,
    String? accept,
    OnCachedResponse? onStaleResponse,
    Duration? staleResponseDelay}) async {
  return request(httpClient, HttpMethod.POST, path,
      fullPath: fullPath,
      authorization: authorization,
      queryParameters: parameters,
      body: body,
      contentType: contentType,
      accept: accept,
      onStaleResponse: onStaleResponse,
      staleResponseDelay: staleResponseDelay);
}