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