delete method
Create a DELETE request for testing.
path The path to request (e.g., '/api/users/123').
Returns a TestRequest builder for the DELETE request.
Implementation
TestRequest delete(String path) {
return TestRequest(_client, 'DELETE', path, baseUrl);
}