delete method
Implementation
Future<Response?> delete(String url,
{Map<String, dynamic>? headers,
Map<String, dynamic>? body,
Options? options}) {
return request(
url: url,
method: 'DELETE',
body: body,
headers: headers,
options: options);
}