delete static method
Creates a test context with a DELETE request.
Implementation
static Context delete(
String path, {
Map<String, String>? headers,
String remoteIp = '127.0.0.1',
}) {
return _create('DELETE', path, headers: headers, remoteIp: remoteIp);
}