patchAjax function
Sends an Ajax request to the given url using the PATCH method.
Implementation
Future<List<int>?> patchAjax(Uri url, {
List<int>? data, String? body, Map<String, String>? headers,
bool? Function(HttpClientResponse response)? onResponse,
Duration? timeout})
=> ajax(url, method: "PATCH", data: data, body: body,
headers: headers, onResponse: onResponse, timeout: timeout);