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