delete method
Perform DELETE request
Implementation
Future<HTTPResult> delete(
String endpoint, {
Map<String, String>? headers,
bool requiresAuth = true,
Duration? timeout,
}) async {
return _request(
method: 'DELETE',
endpoint: endpoint,
headers: headers,
requiresAuth: requiresAuth,
timeout: timeout,
);
}