TestRequest constructor
TestRequest(
- HttpClient _client,
- String method,
- String path,
- String baseUrl,
Creates a test request builder for the given parameters.
_client HTTP client for sending requests.
method HTTP method (GET, POST, etc.).
path Request path relative to base URL.
baseUrl Base URL of the test server.
Implementation
TestRequest(this._client, this.method, this.path, this.baseUrl);