delete method
Sends a DELETE request to the given path.
Implementation
Future<TestResponse> delete(
String path, {
Object? body,
Map<String, String>? headers,
ContentType? contentType,
}) =>
_request('DELETE', path,
body: body, headers: headers, contentType: contentType);