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