patchAjax function

Future<Response> patchAjax(
  1. Uri url, {
  2. List<int>? data,
  3. String? body,
  4. Map<String, String>? headers,
  5. Duration? timeout,
})

Sends an Ajax request to the given url using the PATCH method.

Implementation

Future<http.Response> patchAjax(Uri url, {
    List<int>? data, String? body, Map<String, String>? headers,
    Duration? timeout})
=> ajax(url, method: "PATCH", data: data, body: body,
    headers: headers, timeout: timeout);