deleteAjax function
Sends an Ajax request to the given url using the DELETE method.
Implementation
Future<http.Response> deleteAjax(Uri url, {
List<int>? data, String? body, Map<String, String>? headers,
Duration? timeout})
=> ajax(url, method: "DELETE", data: data, body: body,
headers: headers, timeout: timeout);